IRCP

- information gathering tool for irc servers
git clone git://git.acid.vegas/IRCP.git
Log | Files | Refs | Archive | README | LICENSE

commit ce94dfe634285b75f5d5307ea133c9a5b75ee346
parent d8901ca1ca757bb19cc16a2179fd437a92ef3c21
Author: acidvegas <acid.vegas@acid.vegas>
Date: Sun, 18 Jun 2023 13:45:41 -0400

Renamed chan to target

Diffstat:
Mircp.py | 4++--

1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ircp.py b/ircp.py
@@ -391,9 +391,9 @@ class probe:
 					target = args[3]
 					msg    = ' '.join(args[4:])[1:]
 					if target[:1] in ('#','&'):
-						self.channels['all'].append(chan)
+						self.channels['all'].append(target)
 					else:
-						self.nicks['check'].append(nick)
+						self.nicks['check'].append(target)
 					if 'Target change too fast' in msg and len(args) >= 11:
 						seconds = args[10]
 						if seconds.isdigit():