Skip to content

Commit

Permalink
Use RFC2606 invalid domain names (#514)
Browse files Browse the repository at this point in the history
`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
  • Loading branch information
vnznznz committed Mar 26, 2024
1 parent ecbc1d8 commit 6b6cb41
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/util/browser.ts
Expand Up @@ -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/",
];

0 comments on commit 6b6cb41

Please sign in to comment.