Ужесточение правил, чтобы мимикрирований не было

This commit is contained in:
justuser 2024-06-19 15:56:05 +03:00
parent ccb88adcb4
commit 24737ed93e

View File

@ -7,7 +7,7 @@ def domain_ok(domain):
if domain.split(".")[1] in domains:
# ../some => some
# Защита от проверки папок выше, чем нужно и др.
regex = compile('[^a-zA-Zа-яА-ЯЁё.-]')
regex = compile('[^a-z.-]')
c_domain = regex.sub('', domain)
if domain == c_domain:
return domain