From 5b2130f0ccd73aa055d052cf7792aae98d19328a Mon Sep 17 00:00:00 2001 From: ADmad Date: Fri, 9 Aug 2024 09:25:24 +0530 Subject: [PATCH] Add "internal" to list of safe TLDs https://www.icann.org/en/board-activities-and-meetings/materials/approved-resolutions-special-meeting-of-the-icann-board-29-07-2024-en#section2.a --- src/ToolbarService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ToolbarService.php b/src/ToolbarService.php index 309af078b..78acc1db5 100644 --- a/src/ToolbarService.php +++ b/src/ToolbarService.php @@ -165,7 +165,7 @@ protected function isSuspiciouslyProduction(): bool // Check if the TLD is in the list of safe TLDs. $tld = end($parts); - $safeTlds = ['localhost', 'invalid', 'test', 'example', 'local']; + $safeTlds = ['localhost', 'invalid', 'test', 'example', 'local', 'internal']; $safeTlds = array_merge($safeTlds, (array)$this->getConfig('safeTld')); if (in_array($tld, $safeTlds, true)) {