From 6b6cb4137aeaeee19a56a115cdbce8bccbad8807 Mon Sep 17 00:00:00 2001 From: Vinzenz Sinapius Date: Tue, 26 Mar 2024 22:09:04 +0100 Subject: [PATCH] Use RFC2606 invalid domain names (#514) `invalid.dev` can potentially be registered and used. `.invalid` is guaranteed to never be valid. See also: https://www.rfc-editor.org/rfc/rfc2606.html --- src/util/browser.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/util/browser.ts b/src/util/browser.ts index 6564afd55..ebaee3ef6 100644 --- a/src/util/browser.ts +++ b/src/util/browser.ts @@ -593,8 +593,8 @@ export const defaultArgs = [ "--no-service-autorun", "--export-tagged-pdf", "--apps-keep-chrome-alive-in-tests", - "--apps-gallery-url=https://invalid.webstore.example.com/", - "--apps-gallery-update-url=https://invalid.webstore.example.com/", - //"--component-updater=url-source=http://invalid.dev/", - "--brave-stats-updater-server=url-source=http://invalid.dev/", + "--apps-gallery-url=https://gallery.invalid/", + "--apps-gallery-update-url=https://gallery-update.invalid/", + //"--component-updater=url-source=http://updater.invalid/", + "--brave-stats-updater-server=url-source=http://stats-updater.invalid/", ];