Prevent using URL wildcards in TLD

This commit is contained in:
varjolintu 2025-02-12 18:12:28 +02:00 committed by Jonathan White
parent 9ba6ada266
commit 0b5ae1775c
2 changed files with 5 additions and 1 deletions

View file

@ -158,6 +158,10 @@ void TestUrlTools::testIsUrlValidWithLooseComparison()
urls["*.com/"] = false;
urls["*.com/*"] = false;
urls["**.com/**"] = false;
urls["*.*"] = false;
urls["https://example.*"] = false;
urls["https://*.example.*"] = false;
urls["https://example.c*"] = false;
QHashIterator<QString, bool> i(urls);
while (i.hasNext()) {