fix ipgrapper exploit

pull/200/head
Aevann 2023-09-07 15:06:02 +03:00
parent a4bc71d4e3
commit 06ac5df959
1 changed files with 2 additions and 2 deletions

View File

@ -795,8 +795,8 @@ def normalize_url(url):
return url
def validate_css(css):
if '@import' in css:
return False, "CSS @import statements are not allowed!"
if '@' in css:
return False, "CSS @ statements are not allowed!"
if '/*' in css:
return False, "CSS comments are not allowed!"