From f3bfebe89ac200b14d5aa72b06609a1b06cdb83b Mon Sep 17 00:00:00 2001 From: s5S___ Date: Wed, 20 Dec 2023 14:59:30 +0800 Subject: [PATCH] Update fuckcdn.py --- fuckcdn.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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