diff --git a/tamper/versionedkeywords.py b/tamper/versionedkeywords.py index 602fdfc01..4cc61b874 100644 --- a/tamper/versionedkeywords.py +++ b/tamper/versionedkeywords.py @@ -23,7 +23,7 @@ def tamper(payload): def process(match): word = match.group('word') - if word.upper() in kb.keywords and word.upper() not in ["CAST"]: # CAST can't be commented out + if word.upper() in kb.keywords and word.upper() not in ["CAST", "COUNT"]: # keywords that can't be commented out return match.group().replace(word, "/*!%s*/" % word) else: return match.group()