Minor update

This commit is contained in:
Miroslav Stampar
2018-12-28 20:49:40 +01:00
parent a569f21ad7
commit b31c264a59
3 changed files with 6 additions and 4 deletions

View File

@@ -99,7 +99,7 @@ def main():
WAF_FUNCTIONS = sorted(WAF_FUNCTIONS, key=lambda _: "generic" in _[1].lower())
print colorize("[i] %d WAF scripts loaded" % len(WAF_FUNCTIONS))
print colorize("[i] checking '%s'..." % sys.argv[1])
found = False
for function, product in WAF_FUNCTIONS:
@@ -115,5 +115,7 @@ def main():
print
exit(int(not found))
if __name__ == "__main__":
main()