diff --git a/fuckcdn.py b/fuckcdn.py index 7a8a82d..d96ff77 100644 --- a/fuckcdn.py +++ b/fuckcdn.py @@ -127,10 +127,10 @@ def __init__(self,host,keyword,ips,timeout): self.outfile = open(self.filename, 'w') def _in_keyword(self,html): - ret = True + ret = False for i in self.keyword: - if html not in i: - ret = False + if i in html: + ret = True break return ret