From a80c9c52670791a9e0b8abc73efb65a16475d90a Mon Sep 17 00:00:00 2001 From: swee Date: Sat, 11 Jan 2025 00:54:30 -0800 Subject: [PATCH] Update modules/botnet_protect.py --- modules/botnet_protect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/botnet_protect.py b/modules/botnet_protect.py index ddddc8b..ab0aab0 100644 --- a/modules/botnet_protect.py +++ b/modules/botnet_protect.py @@ -32,7 +32,7 @@ class IRCatModule: target = value.split(" ")[1] content = " ".join(value.split(" ")[2:])[1:] print([content]) - if content in sus_strings and self.memory[ip] == 1: + if content in self.sus_strings and self.memory[ip] == 1: self.ban(ip) else: self.memory[ip] = 0 # 0: Trust the connection :3 \ No newline at end of file