diff --git a/typo3/sysext/linkvalidator/Classes/Linktype/ExternalLinktype.php b/typo3/sysext/linkvalidator/Classes/Linktype/ExternalLinktype.php index e6d04b8e0fe6c1a7b2ecfbfbfac578aa8eb322de..663221eee4b06574347fd22b183be89df2f1becd 100644 --- a/typo3/sysext/linkvalidator/Classes/Linktype/ExternalLinktype.php +++ b/typo3/sysext/linkvalidator/Classes/Linktype/ExternalLinktype.php @@ -272,6 +272,7 @@ class ExternalLinktype extends AbstractLinktype */ protected function preprocessUrl(string $url): string { + $url = html_entity_decode($url); $parts = parse_url($url); $newDomain = (string)HttpUtility::idn_to_ascii($parts['host']); if (strcmp($parts['host'], $newDomain) !== 0) { diff --git a/typo3/sysext/linkvalidator/Tests/Unit/Linktype/ExternalLinktypeTest.php b/typo3/sysext/linkvalidator/Tests/Unit/Linktype/ExternalLinktypeTest.php index fcb6430b4051964ea6264c27d967c1e4ba792915..5c49658ebdbb406a18abfe2406ab242c314020a9 100644 --- a/typo3/sysext/linkvalidator/Tests/Unit/Linktype/ExternalLinktypeTest.php +++ b/typo3/sysext/linkvalidator/Tests/Unit/Linktype/ExternalLinktypeTest.php @@ -129,6 +129,16 @@ class ExternalLinktypeTest extends UnitTestCase public function preprocessUrlsDataProvider() { + // regression tests for issues #89488, #89682 + yield 'URL with query parameter and ampersand' => [ + 'https://standards.cen.eu/dyn/www/f?p=204:6:0::::FSP_ORG_ID,FSP_LANG_ID:,22&cs=1A3FFBC44FAB6B2A181C9525249C3A829', + 'https://standards.cen.eu/dyn/www/f?p=204:6:0::::FSP_ORG_ID,FSP_LANG_ID:,22&cs=1A3FFBC44FAB6B2A181C9525249C3A829' + ]; + yield 'URL with query parameter and ampersand with HTML entities' => [ + 'https://standards.cen.eu/dyn/www/f?p=204:6:0::::FSP_ORG_ID,FSP_LANG_ID:,22&cs=1A3FFBC44FAB6B2A181C9525249C3A829', + 'https://standards.cen.eu/dyn/www/f?p=204:6:0::::FSP_ORG_ID,FSP_LANG_ID:,22&cs=1A3FFBC44FAB6B2A181C9525249C3A829' + ]; + // regression tests for #89378 yield 'URL with path with dashes' => [ 'https://example.com/Unternehmen/Ausbildung-Qualifikation/Weiterbildung-in-Niedersachsen/', @@ -142,9 +152,9 @@ class ExternalLinktypeTest extends UnitTestCase 'http://example.com/universitaet/die-uni-im-ueberblick/lageplan/gebaeude/building/120', 'http://example.com/universitaet/die-uni-im-ueberblick/lageplan/gebaeude/building/120' ]; - yield 'URL with path and query parameters' => [ + yield 'URL with path and query parameters (including &, ~,; etc.)' => [ 'http://example.com/tv?bcpid=1701167454001&bckey=AQ~~,AAAAAGL7LqU~,aXlKNnCf9d9Tmck-kOc4PGFfCgHjM5JR&bctid=1040702768001', - 'http://example.com/tv?bcpid=1701167454001&bckey=AQ~~,AAAAAGL7LqU~,aXlKNnCf9d9Tmck-kOc4PGFfCgHjM5JR&bctid=1040702768001' + 'http://example.com/tv?bcpid=1701167454001&bckey=AQ~~,AAAAAGL7LqU~,aXlKNnCf9d9Tmck-kOc4PGFfCgHjM5JR&bctid=1040702768001' ]; // make sure we correctly handle URLs with query parameters and fragment etc.