IRCP- information gathering tool for irc servers |
git clone git://git.acid.vegas/IRCP.git |
Log | Files | Refs | Archive | README | LICENSE |
commit 33ab2981c73679e9fac4cb853be8523a9bcf57e4
parent 91ca58bbeafc01b16b6c3c80a9b1ca5e7c6ab7ce Author: acidvegas <acid.vegas@acid.vegas> Date: Sun, 18 Jun 2023 01:25:08 -0400 Added HELP command to be sent Diffstat:
|
1 file changed, 1 insertion(+), 1 deletion(-) |
diff --git a/ircp.py b/ircp.py @@ -198,7 +198,7 @@ class probe: async def loop_initial(self): try: await asyncio.sleep(throttle.delay) - cmds = ['ADMIN', 'CAP LS', 'INFO', 'IRCOPS', 'LINKS', 'MAP', 'MODULES -all', 'SERVLIST', 'STATS p', 'VERSION'] + cmds = ['ADMIN', 'CAP LS', 'HELP', 'INFO', 'IRCOPS', 'LINKS', 'MAP', 'MODULES -all', 'SERVLIST', 'STATS p', 'VERSION'] random.shuffle(cmds) cmds += ['PRIVMSG NickServ :REGISTER {0} {1}'.format(self.login['pass'], self.login['mail']), 'LIST'] for command in cmds: |