2008-06-07 06:43:15 +00:00
|
|
|
#
|
2012-05-21 11:12:37 +00:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
2008-06-07 06:43:15 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# This file defines the locations at which this HTTP server may be accessed.
|
|
|
|
# It is referred to by the following page, so if this file moves, that page must
|
|
|
|
# be modified accordingly:
|
|
|
|
#
|
2022-08-31 07:56:57 +00:00
|
|
|
# https://firefox-source-docs.mozilla.org/testing/mochitest-plain/faq.html
|
2008-06-07 06:43:15 +00:00
|
|
|
#
|
|
|
|
# Empty lines and lines which begin with "#" are ignored and may be used for
|
|
|
|
# storing comments. All other lines consist of an origin followed by whitespace
|
|
|
|
# and a comma-separated list of options (if indeed any options are needed).
|
|
|
|
#
|
|
|
|
# The format of an origin is, referring to RFC 2396, a scheme (either "http" or
|
|
|
|
# "https"), followed by "://", followed by a host, followed by ":", followed by
|
|
|
|
# a port number. The colon and port number must be present even if the port
|
|
|
|
# number is the default for the protocol.
|
|
|
|
#
|
|
|
|
# Unrecognized options are ignored. Recognized options are "primary" and
|
2015-01-07 07:28:00 +00:00
|
|
|
# "privileged", "nocert", "cert=some_cert_nickname", "redir=hostname" and
|
|
|
|
# "failHandshake".
|
2008-09-05 13:35:58 +00:00
|
|
|
#
|
|
|
|
# "primary" denotes a location which is the canonical location of
|
2008-06-07 06:43:15 +00:00
|
|
|
# the server; this location is the one assumed for requests which don't
|
2017-01-12 16:08:45 +00:00
|
|
|
# otherwise identify a particular origin (e.g. HTTP/1.0 requests).
|
2008-09-05 13:35:58 +00:00
|
|
|
#
|
2017-01-12 16:08:45 +00:00
|
|
|
# "privileged" denotes a location which should have the ability to request
|
2008-09-05 13:35:58 +00:00
|
|
|
# elevated privileges; the default is no privileges.
|
|
|
|
#
|
|
|
|
# "nocert" makes sense only for https:// hosts and means there is not
|
|
|
|
# any certificate automatically generated for this host.
|
|
|
|
#
|
2015-01-07 07:28:00 +00:00
|
|
|
# "failHandshake" causes the tls handshake to fail (by sending a client hello to
|
|
|
|
# the client).
|
|
|
|
#
|
2008-09-05 13:35:58 +00:00
|
|
|
# "cert=nickname" tells the pgo server to use a particular certificate
|
|
|
|
# for this host. The certificate is referenced by its nickname that must
|
|
|
|
# not contain any spaces. The certificate key files (PKCS12 modules)
|
2012-06-23 07:10:16 +00:00
|
|
|
# for custom certification are loaded from build/pgo/certs
|
2008-09-05 13:35:58 +00:00
|
|
|
# directory. When new certificate is added to this dir pgo/ssltunnel
|
2012-06-23 07:10:16 +00:00
|
|
|
# must be built then. This is only necessary for cases where we really do
|
|
|
|
# want specific certs.
|
2019-02-25 21:06:41 +00:00
|
|
|
# You can find instructions on how to add or modify certificates at:
|
|
|
|
# https://firefox-source-docs.mozilla.org/build/buildsystem/test_certificates.html
|
2008-06-07 06:43:15 +00:00
|
|
|
#
|
2011-11-02 21:43:27 +00:00
|
|
|
# "redir=hostname" tells the pgo server is only used for https://
|
|
|
|
# hosts while processing the CONNECT tunnel request. It responds
|
|
|
|
# to the CONNECT with a 302 and redirection to the hostname instead
|
|
|
|
# of connecting to the real back end and replying with a 200. This
|
|
|
|
# mode exists primarily to ensure we don't allow a proxy to do that.
|
|
|
|
#
|
2008-06-07 06:43:15 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# This is the primary location from which tests run.
|
|
|
|
#
|
2010-03-12 21:53:36 +00:00
|
|
|
http://mochi.test:8888 primary,privileged
|
2008-06-07 06:43:15 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# These are a common set of prefixes scattered across one TLD with two ports and
|
|
|
|
# another TLD on a single port.
|
|
|
|
#
|
2010-03-12 21:53:36 +00:00
|
|
|
http://127.0.0.1:80 privileged
|
|
|
|
http://127.0.0.1:8888 privileged
|
|
|
|
http://test:80 privileged
|
|
|
|
http://mochi.test:8888 privileged
|
2020-06-22 19:10:30 +00:00
|
|
|
http://mochi.xorigin-test:8888 privileged
|
2014-07-30 19:23:04 +00:00
|
|
|
http://test1.mochi.test:8888
|
2015-01-07 21:47:18 +00:00
|
|
|
http://sub1.test1.mochi.test:8888
|
|
|
|
http://sub2.xn--lt-uia.mochi.test:8888
|
2014-07-30 19:23:04 +00:00
|
|
|
http://test2.mochi.test:8888
|
2008-06-07 06:43:15 +00:00
|
|
|
http://example.org:80 privileged
|
|
|
|
http://test1.example.org:80 privileged
|
|
|
|
http://test2.example.org:80 privileged
|
2021-04-14 10:45:55 +00:00
|
|
|
http://test3.example.org:80 privileged
|
2008-06-07 06:43:15 +00:00
|
|
|
http://sub1.test1.example.org:80 privileged
|
|
|
|
http://sub1.test2.example.org:80 privileged
|
|
|
|
http://sub2.test1.example.org:80 privileged
|
|
|
|
http://sub2.test2.example.org:80 privileged
|
|
|
|
http://example.org:8000 privileged
|
|
|
|
http://test1.example.org:8000 privileged
|
|
|
|
http://test2.example.org:8000 privileged
|
|
|
|
http://sub1.test1.example.org:8000 privileged
|
|
|
|
http://sub1.test2.example.org:8000 privileged
|
|
|
|
http://sub2.test1.example.org:8000 privileged
|
|
|
|
http://sub2.test2.example.org:8000 privileged
|
|
|
|
http://example.com:80 privileged
|
2010-11-29 21:22:25 +00:00
|
|
|
http://www.example.com:80 privileged
|
2008-06-07 06:43:15 +00:00
|
|
|
http://test1.example.com:80 privileged
|
|
|
|
http://test2.example.com:80 privileged
|
|
|
|
http://sub1.test1.example.com:80 privileged
|
|
|
|
http://sub1.test2.example.com:80 privileged
|
|
|
|
http://sub2.test1.example.com:80 privileged
|
|
|
|
http://sub2.test2.example.com:80 privileged
|
2014-05-12 16:36:38 +00:00
|
|
|
http://example.net:80 privileged
|
2020-05-26 11:45:34 +00:00
|
|
|
http://supports-insecure.expired.example.com:80 privileged
|
2015-03-06 01:37:49 +00:00
|
|
|
# Used to test that clearing Service Workers for domain example.com, does not clear prefixexample.com
|
|
|
|
http://prefixexample.com:80
|
2008-06-07 06:43:15 +00:00
|
|
|
|
2015-07-20 12:44:32 +00:00
|
|
|
# The first HTTPS location is used to generate the Common Name (CN) value of the
|
|
|
|
# certificate's Issued To field.
|
2008-09-05 13:35:58 +00:00
|
|
|
https://example.com:443 privileged
|
2021-10-15 16:54:26 +00:00
|
|
|
https://www.example.com:443 privileged
|
2008-09-05 13:35:58 +00:00
|
|
|
https://test1.example.com:443 privileged
|
|
|
|
https://test2.example.com:443 privileged
|
2015-07-20 12:44:32 +00:00
|
|
|
https://example.org:443 privileged
|
|
|
|
https://test1.example.org:443 privileged
|
|
|
|
https://test2.example.org:443 privileged
|
2021-10-21 13:58:55 +00:00
|
|
|
https://sub1.test1.example.org:443 privileged
|
|
|
|
https://sub1.test2.example.org:443 privileged
|
|
|
|
https://sub2.test1.example.org:443 privileged
|
|
|
|
https://sub2.test2.example.org:443 privileged
|
2008-09-05 13:35:58 +00:00
|
|
|
https://sub1.test1.example.com:443 privileged
|
|
|
|
https://sub1.test2.example.com:443 privileged
|
|
|
|
https://sub2.test1.example.com:443 privileged
|
|
|
|
https://sub2.test2.example.com:443 privileged
|
2021-10-13 14:17:14 +00:00
|
|
|
https://example.net:443 privileged
|
2008-09-05 13:35:58 +00:00
|
|
|
https://nocert.example.com:443 privileged,nocert
|
2022-05-25 17:51:11 +00:00
|
|
|
https://nocert.example.org:443 privileged,nocert
|
2009-01-21 11:01:00 +00:00
|
|
|
https://self-signed.example.com:443 privileged,cert=selfsigned
|
|
|
|
https://untrusted.example.com:443 privileged,cert=untrusted
|
2010-01-06 18:25:44 +00:00
|
|
|
https://expired.example.com:443 privileged,cert=expired
|
2009-01-15 19:19:15 +00:00
|
|
|
https://requestclientcert.example.com:443 privileged,clientauth=request
|
|
|
|
https://requireclientcert.example.com:443 privileged,clientauth=require
|
2020-08-03 13:24:34 +00:00
|
|
|
https://requireclientcert-2.example.com:443 privileged,clientauth=require
|
2023-04-13 18:52:18 +00:00
|
|
|
https://requireclientcert-untrusted.example.com:443 privileged,clientauth=require,cert=untrusted
|
2012-10-31 21:17:28 +00:00
|
|
|
https://mismatch.expired.example.com:443 privileged,cert=expired
|
|
|
|
https://mismatch.untrusted.example.com:443 privileged,cert=untrusted
|
|
|
|
https://untrusted-expired.example.com:443 privileged,cert=untrustedandexpired
|
|
|
|
https://mismatch.untrusted-expired.example.com:443 privileged,cert=untrustedandexpired
|
2020-05-26 11:45:34 +00:00
|
|
|
https://supports-insecure.expired.example.com:443 privileged,cert=expired
|
2019-03-14 15:45:55 +00:00
|
|
|
https://no-subject-alt-name.example.com:443 cert=noSubjectAltName
|
2008-09-05 13:35:58 +00:00
|
|
|
|
2020-02-26 23:15:02 +00:00
|
|
|
# Used for secure contexts on ip addresses, see bug 1616675. Note that
|
|
|
|
# 127.0.0.1 prompts ssltunnel.cpp to do special-cases, so we use .2
|
|
|
|
https://127.0.0.2:443 privileged,ipV4Address
|
2020-10-20 10:26:41 +00:00
|
|
|
https://secureonly.example.com:443
|
2020-02-26 23:15:02 +00:00
|
|
|
|
2011-06-11 18:24:50 +00:00
|
|
|
# Prevent safebrowsing tests from hitting the network for its-a-trap.html and
|
|
|
|
# its-an-attack.html.
|
2014-03-07 18:12:23 +00:00
|
|
|
http://www.itisatrap.org:80
|
2017-01-12 16:08:45 +00:00
|
|
|
https://www.itisatrap.org:443
|
2011-06-11 18:24:50 +00:00
|
|
|
|
2008-06-07 06:43:15 +00:00
|
|
|
#
|
|
|
|
# These are subdomains of <ält.example.org>.
|
|
|
|
#
|
|
|
|
http://sub1.xn--lt-uia.example.org:8000 privileged
|
|
|
|
http://sub2.xn--lt-uia.example.org:80 privileged
|
|
|
|
http://xn--exmple-cua.test:80 privileged
|
|
|
|
http://sub1.xn--exmple-cua.test:80 privileged
|
2013-03-01 11:56:45 +00:00
|
|
|
http://xn--exaple-kqf.test:80 privileged
|
|
|
|
http://sub1.xn--exaple-kqf.test:80 privileged
|
2008-06-07 06:43:15 +00:00
|
|
|
|
2008-09-05 13:35:58 +00:00
|
|
|
https://xn--hxajbheg2az3al.xn--jxalpdlp:443 privileged
|
|
|
|
https://sub1.xn--hxajbheg2az3al.xn--jxalpdlp:443 privileged
|
|
|
|
|
2008-06-07 06:43:15 +00:00
|
|
|
#
|
|
|
|
# These are subdomains of <παράδειγμα.δοκιμή>, the Greek IDN for example.test.
|
|
|
|
#
|
|
|
|
http://xn--hxajbheg2az3al.xn--jxalpdlp:80 privileged
|
|
|
|
http://sub1.xn--hxajbheg2az3al.xn--jxalpdlp:80 privileged
|
|
|
|
|
2008-10-10 14:41:38 +00:00
|
|
|
# Bug 413909 test host
|
|
|
|
https://bug413909.xn--hxajbheg2az3al.xn--jxalpdlp:443 privileged,cert=bug413909cert
|
|
|
|
|
2008-06-07 06:43:15 +00:00
|
|
|
#
|
|
|
|
# These hosts are used in tests which exercise privilege-granting functionality;
|
|
|
|
# we could reuse some of the names above, but specific names make it easier to
|
|
|
|
# distinguish one from the other in tests (as well as what functionality is
|
|
|
|
# being tested).
|
|
|
|
#
|
|
|
|
http://sectest1.example.org:80 privileged
|
|
|
|
http://sub.sectest2.example.org:80 privileged
|
|
|
|
http://sectest2.example.org:80
|
|
|
|
http://sub.sectest1.example.org:80
|
2008-09-05 13:35:58 +00:00
|
|
|
|
|
|
|
https://sectest1.example.org:443 privileged
|
|
|
|
https://sub.sectest2.example.org:443 privileged
|
|
|
|
https://sectest2.example.org:443
|
|
|
|
https://sub.sectest1.example.org:443
|
2009-01-14 07:13:48 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Used while testing the url-classifier
|
|
|
|
#
|
2009-03-10 21:57:59 +00:00
|
|
|
http://malware.example.com:80
|
2016-04-19 01:07:35 +00:00
|
|
|
http://unwanted.example.com:80
|
2014-07-19 00:26:24 +00:00
|
|
|
http://tracking.example.com:80
|
2019-02-06 13:12:20 +00:00
|
|
|
http://cryptomining.example.com:80
|
|
|
|
http://fingerprinting.example.com:80
|
2014-08-23 03:26:46 +00:00
|
|
|
http://not-tracking.example.com:80
|
|
|
|
http://tracking.example.org:80
|
2018-11-05 17:10:49 +00:00
|
|
|
http://another-tracking.example.net:80
|
2019-11-02 09:53:51 +00:00
|
|
|
http://social-tracking.example.org:80
|
2015-08-07 20:08:22 +00:00
|
|
|
http://itisatracker.org:80
|
2024-04-17 18:32:39 +00:00
|
|
|
https://itisatracker.org:443
|
2015-08-07 20:08:22 +00:00
|
|
|
http://trackertest.org:80
|
2022-07-18 21:48:16 +00:00
|
|
|
http://email-tracking.example.org:80
|
2019-04-18 01:00:22 +00:00
|
|
|
#
|
|
|
|
# Used while testing TLS session ticket resumption for third-party trackers (bug 1500533)
|
|
|
|
# (DO NOT USE THIS HOST IN OTHER TESTS!)
|
|
|
|
#
|
|
|
|
https://tlsresumptiontest.example.org:443
|
2009-07-29 20:23:27 +00:00
|
|
|
|
2015-07-20 12:44:32 +00:00
|
|
|
https://malware.example.com:443
|
2016-04-19 01:07:35 +00:00
|
|
|
https://unwanted.example.com:443
|
2015-07-20 12:44:32 +00:00
|
|
|
https://tracking.example.com:443
|
2019-02-06 13:12:20 +00:00
|
|
|
https://cryptomining.example.com:443
|
|
|
|
https://fingerprinting.example.com:443
|
2015-07-20 12:44:32 +00:00
|
|
|
https://not-tracking.example.com:443
|
|
|
|
https://tracking.example.org:443
|
2018-11-05 17:10:49 +00:00
|
|
|
https://another-tracking.example.net:443
|
2019-11-02 09:53:51 +00:00
|
|
|
https://social-tracking.example.org:443
|
2022-07-18 21:48:16 +00:00
|
|
|
https://email-tracking.example.org:443
|
2015-07-20 12:44:32 +00:00
|
|
|
|
2016-11-22 23:01:04 +00:00
|
|
|
#
|
|
|
|
# Used while testing flash blocking (Bug 1307604)
|
|
|
|
#
|
|
|
|
http://flashallow.example.com:80
|
|
|
|
http://exception.flashallow.example.com:80
|
|
|
|
http://flashblock.example.com:80
|
|
|
|
http://exception.flashblock.example.com:80
|
|
|
|
http://subdocument.example.com:80
|
2017-03-10 18:50:21 +00:00
|
|
|
https://subdocument.example.com:443
|
2016-11-22 23:01:04 +00:00
|
|
|
http://exception.subdocument.example.com:80
|
|
|
|
|
2019-09-27 08:50:44 +00:00
|
|
|
#
|
|
|
|
# Used while testing tracking protection (Bug 1580416)
|
|
|
|
# Not that apps.fbsbx.com is a public suffix
|
|
|
|
#
|
|
|
|
http://mochitest.apps.fbsbx.com:80
|
|
|
|
|
2016-11-22 23:01:04 +00:00
|
|
|
#
|
|
|
|
# Flash usage can fail unless this URL exists
|
|
|
|
#
|
|
|
|
http://fpdownload2.macromedia.com:80
|
|
|
|
https://fpdownload2.macromedia.com:443
|
|
|
|
|
2016-07-18 14:31:34 +00:00
|
|
|
# Bug 1281083
|
|
|
|
http://bug1281083.example.com:80
|
|
|
|
|
2009-07-29 20:23:27 +00:00
|
|
|
# Bug 483437, 484111
|
|
|
|
https://www.bank1.com:443 privileged,cert=escapeattack1
|
2011-11-02 21:43:27 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# CONNECT for redirproxy results in a 302 redirect to
|
|
|
|
# test1.example.com
|
|
|
|
#
|
|
|
|
https://redirproxy.example.com:443 privileged,redir=test1.example.com
|
|
|
|
|
2011-12-03 17:18:38 +00:00
|
|
|
# Host used for IndexedDB Quota testing
|
|
|
|
http://bug704464-1.example.com:80 privileged
|
|
|
|
http://bug704464-2.example.com:80 privileged
|
|
|
|
http://bug704464-3.example.com:80 privileged
|
2012-01-04 16:25:26 +00:00
|
|
|
http://bug702292.example.com:80 privileged
|
2012-06-23 07:10:16 +00:00
|
|
|
|
|
|
|
# W3C hosts.
|
|
|
|
# See http://www.w3.org/wiki/Testing/Requirements#The_Web_test_server_must_be_available_through_different_domain_names
|
|
|
|
http://w3c-test.org:80
|
|
|
|
http://w3c-test.org:81
|
|
|
|
http://w3c-test.org:82
|
|
|
|
http://w3c-test.org:83
|
|
|
|
http://www.w3c-test.org:80
|
|
|
|
http://www.w3c-test.org:81
|
|
|
|
http://www.w3c-test.org:82
|
|
|
|
http://www.w3c-test.org:83
|
|
|
|
http://www1.w3c-test.org:80
|
|
|
|
http://www1.w3c-test.org:81
|
|
|
|
http://www1.w3c-test.org:82
|
|
|
|
http://www1.w3c-test.org:83
|
|
|
|
http://www2.w3c-test.org:80
|
|
|
|
http://www2.w3c-test.org:81
|
|
|
|
http://www2.w3c-test.org:82
|
|
|
|
http://www2.w3c-test.org:83
|
|
|
|
# http://天気の良い日.w3c-test.org
|
|
|
|
http://xn--n8j6ds53lwwkrqhv28a.w3c-test.org:80
|
|
|
|
http://xn--n8j6ds53lwwkrqhv28a.w3c-test.org:81
|
|
|
|
http://xn--n8j6ds53lwwkrqhv28a.w3c-test.org:82
|
|
|
|
http://xn--n8j6ds53lwwkrqhv28a.w3c-test.org:83
|
|
|
|
# http://élève.w3c-test.org
|
|
|
|
http://xn--lve-6lad.w3c-test.org:80
|
|
|
|
http://xn--lve-6lad.w3c-test.org:81
|
|
|
|
http://xn--lve-6lad.w3c-test.org:82
|
|
|
|
http://xn--lve-6lad.w3c-test.org:83
|
|
|
|
# HTTPS versions of the above
|
|
|
|
https://w3c-test.org:443
|
|
|
|
https://www.w3c-test.org:443
|
|
|
|
https://www1.w3c-test.org:443
|
|
|
|
https://www2.w3c-test.org:443
|
|
|
|
https://xn--n8j6ds53lwwkrqhv28a.w3c-test.org:443
|
|
|
|
https://xn--lve-6lad.w3c-test.org:443
|
|
|
|
http://test.w3.org:80
|
2014-02-06 09:08:01 +00:00
|
|
|
|
|
|
|
# Hosts for testing TLD-based fallback encoding
|
|
|
|
http://example.tw:80 privileged
|
|
|
|
http://example.cn:80 privileged
|
|
|
|
http://example.co.jp:80 privileged
|
|
|
|
http://example.fi:80 privileged
|
2020-06-15 15:32:21 +00:00
|
|
|
http://example.in:80 privileged
|
|
|
|
http://example.lk:80 privileged
|
2014-02-06 09:08:01 +00:00
|
|
|
|
2014-09-30 03:31:08 +00:00
|
|
|
# Host for HPKP
|
|
|
|
https://include-subdomains.pinning-dynamic.example.com:443 privileged,cert=dynamicPinningGood
|
|
|
|
https://bad.include-subdomains.pinning-dynamic.example.com:443 privileged,cert=dynamicPinningBad
|
|
|
|
|
2014-10-30 11:52:00 +00:00
|
|
|
# Host for static pin tests
|
2015-01-07 07:28:00 +00:00
|
|
|
https://badchain.include-subdomains.pinning.example.com:443 privileged,cert=staticPinningBad
|
|
|
|
https://fail-handshake.example.com:443 privileged,failHandshake
|
2014-11-07 05:12:00 +00:00
|
|
|
|
2020-07-18 13:38:59 +00:00
|
|
|
# Host for bad cert domain fixup test
|
|
|
|
https://badcertdomain.example.com:443 privileged,cert=badCertDomain
|
|
|
|
https://www.badcertdomain.example.com:443 privileged,cert=badCertDomain
|
|
|
|
https://127.0.0.3:433 privileged,cert=badCertDomain
|
|
|
|
https://badcertdomain.example.com:82 privileged,cert=badCertDomain
|
|
|
|
https://mismatch.badcertdomain.example.com:443 privileged,cert=badCertDomain
|
|
|
|
|
2021-04-13 17:43:12 +00:00
|
|
|
# Hosts for HTTPS-First upgrades/downgrades
|
|
|
|
http://httpsfirst.com:80 privileged
|
|
|
|
https://httpsfirst.com:443 privileged,nocert
|
|
|
|
|
2014-11-07 05:12:00 +00:00
|
|
|
# Hosts for sha1 console warning tests
|
|
|
|
https://sha1ee.example.com:443 privileged,cert=sha1_end_entity
|
|
|
|
https://sha256ee.example.com:443 privileged,cert=sha256_end_entity
|
2014-12-13 11:09:02 +00:00
|
|
|
|
2018-02-26 22:55:35 +00:00
|
|
|
# Hosts for imminent distrust warning tests
|
|
|
|
https://imminently-distrusted.example.com:443 privileged,cert=imminently_distrusted
|
2017-11-02 03:59:33 +00:00
|
|
|
|
2021-08-24 01:25:07 +00:00
|
|
|
# Hosts for ssl3/3des/tls1 tests
|
2019-05-15 23:34:52 +00:00
|
|
|
https://ssl3.example.com:443 privileged,ssl3
|
2021-08-24 01:25:07 +00:00
|
|
|
https://3des.example.com:443 privileged,3des,tls1,tls1_2
|
2019-05-15 23:34:52 +00:00
|
|
|
https://tls1.example.com:443 privileged,tls1
|
|
|
|
https://tls11.example.com:443 privileged,tls1_1
|
|
|
|
https://tls12.example.com:443 privileged,tls1_2
|
|
|
|
https://tls13.example.com:443 privileged,tls1,tls1_3
|
2016-01-08 22:20:44 +00:00
|
|
|
|
|
|
|
# Hosts for youtube rewrite tests
|
|
|
|
https://mochitest.youtube.com:443
|
2017-10-05 09:33:10 +00:00
|
|
|
|
2017-12-06 15:28:20 +00:00
|
|
|
# Host for U2F localhost tests
|
|
|
|
https://localhost:443
|
2018-10-07 08:17:54 +00:00
|
|
|
|
2019-05-13 14:40:40 +00:00
|
|
|
# Bug 1402530
|
|
|
|
http://localhost:80 privileged
|
|
|
|
|
2021-11-04 08:56:29 +00:00
|
|
|
http://localhost:9898
|
|
|
|
http://localhost:9899
|
|
|
|
|
2018-10-07 08:17:54 +00:00
|
|
|
# Host for testing APIs whitelisted for mozilla.org
|
|
|
|
https://www.mozilla.org:443
|
2020-12-09 10:46:36 +00:00
|
|
|
|
|
|
|
# local-IP origins for password manager tests (Bug 1582499)
|
|
|
|
http://10.0.0.0:80 privileged
|
|
|
|
http://192.168.0.0:80 privileged
|
2021-03-11 17:10:07 +00:00
|
|
|
|
|
|
|
# testing HTTPS-Only Suggestions on the Error Page (Bug 1665057)
|
|
|
|
https://www.suggestion-example.com:443 privileged,cert=bug1665057cert
|
|
|
|
http://suggestion-example.com:80 privileged
|
|
|
|
https://suggestion-example.com:443 privileged,cert=badCertDomain
|
|
|
|
http://no-suggestion-example.com:80 privileged
|
|
|
|
https://no-suggestion-example.com:443 privileged,cert=badCertDomain
|
2021-07-07 14:19:09 +00:00
|
|
|
|
2021-07-14 12:34:01 +00:00
|
|
|
# testing HTTPS-First doesn't show warning page for bad cert
|
|
|
|
http://nocert.example.com:80 privileged
|
|
|
|
http://self-signed.example.com:80 privileged
|
|
|
|
http://untrusted.example.com:80 privileged
|
|
|
|
http://untrusted-expired.example.com:80 privileged
|
|
|
|
http://no-subject-alt-name.example.com:80 privileged
|
|
|
|
http://expired.example.com:80 privileged
|
|
|
|
|
2021-07-07 14:19:09 +00:00
|
|
|
# testing HTTPS-First behaviour for redirection (Bug 1706126)
|
|
|
|
http://redirect-example.com:80 privileged
|
|
|
|
https://redirect-example.com:443 privileged,cert=bug1706126cert
|
|
|
|
https://www.redirect-example.com:443 privileged,cert=bug1706126cert
|
2023-03-16 21:28:58 +00:00
|
|
|
|
|
|
|
# DoH server
|
|
|
|
https://foo.example.com:4433 privileged,cert=http2-cert.pem
|
|
|
|
|
|
|
|
# Mochitest
|
|
|
|
https://mochi.test:443 privileged,cert=mochitest-cert.pem
|
2023-09-26 15:39:37 +00:00
|
|
|
|
|
|
|
# condprof common transactions
|
|
|
|
http://profile.stage.mozaws.net:80 privileged
|
|
|
|
https://profile.stage.mozaws.net:443 privileged
|
|
|
|
http://ocsp.pki.goog:80 privileged
|
|
|
|
https://ocsp.pki.goog:443 privileged
|
2023-11-08 13:44:26 +00:00
|
|
|
|
|
|
|
# External IP address only available via http (Bug 1855734)
|
|
|
|
http://123.123.123.123:80 privileged
|
|
|
|
https://123.123.123.123:443 privileged,nocert
|
2024-01-17 09:36:53 +00:00
|
|
|
|
|
|
|
# Domain with HSTS preloaded
|
|
|
|
http://includesubdomains.preloaded.test:80 privileged
|
|
|
|
https://includesubdomains.preloaded.test:443 privileged
|