diff --git a/content.py b/content.py index c079f46a..0782d0ed 100644 --- a/content.py +++ b/content.py @@ -191,7 +191,8 @@ def dangerousCSS(filename: str) -> bool: with open(filename, 'r') as fp: content = fp.read().lower() - cssMatches = ('behavior:', ':expression', '?php', '.php') + cssMatches = ('behavior:', ':expression', '?php', '.php', + 'google') for match in cssMatches: if match in content: return True