Merge pull request #17431 from johkoenig/bugfix/17377/trusted_domain_helper_case_insensitive
make TrustedDomainHelper case insensitive
This commit is contained in:
commit
075a0b24d5
|
@ -90,7 +90,7 @@ class TrustedDomainHelper {
|
|||
if (gettype($trusted) !== 'string') {
|
||||
break;
|
||||
}
|
||||
$regex = '/^' . implode('[-\.a-zA-Z0-9]*', array_map(function($v) { return preg_quote($v, '/'); }, explode('*', $trusted))) . '$/';
|
||||
$regex = '/^' . implode('[-\.a-zA-Z0-9]*', array_map(function($v) { return preg_quote($v, '/'); }, explode('*', $trusted))) . '$/i';
|
||||
if (preg_match($regex, $domain) || preg_match($regex, $domainWithPort)) {
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -54,6 +54,8 @@ class TrustedDomainHelperTest extends \Test\TestCase {
|
|||
'cen*ter',
|
||||
'*.leadingwith.port:123',
|
||||
'trailingwith.port*:456',
|
||||
'UPPERCASE.DOMAIN',
|
||||
'lowercase.domain',
|
||||
];
|
||||
return [
|
||||
// empty defaults to false with 8.1
|
||||
|
@ -106,6 +108,9 @@ class TrustedDomainHelperTest extends \Test\TestCase {
|
|||
[$trustedHostTestList, '-bad', false],
|
||||
[$trustedHostTestList, '-bad.leading.host', false],
|
||||
[$trustedHostTestList, 'bad..der.leading.host', false],
|
||||
// case sensitivity
|
||||
[$trustedHostTestList, 'uppercase.domain', true],
|
||||
[$trustedHostTestList, 'LOWERCASE.DOMAIN', true],
|
||||
];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue