IRCP

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

commit 349a74b79eb0e3ee22b6318b26449bfcbe8d2158
parent f2e774b846af10459c879797155de1425bd5b8b3
Author: acidvegas <acid.vegas@acid.vegas>
Date: Sat, 17 Jun 2023 16:53:28 -0400

Updated intial commands and added INFO command infrmation.

Diffstat:
MREADME.md | 4++--

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

diff --git a/README.md b/README.md
@@ -20,9 +20,9 @@ Edit [ircp.py](https://github.com/internet-relay-chat/IRCP/blob/master/ircp.py) 
 ## Order of Operations
 First, an attempt to connect using SSL/TLS is made, which will fall back to a standard connection if it fails. If a non-standard port was given, both standard & secure connection attempts are made on the port as-well. The **RPL_ISUPPORT** *(005)* response is checked for the `SSL=` option to try & locate secure ports.
 
-Once connected, server information is gathered from `ADMIN`, `CAP LS`, `MODULES -all`, `VERSION`, `IRCOPS`, `MAP`, `INFO`, `LINKS`, `STATS p`, & `LIST` replies. An attempt to register a nickname is then made by trying to contact NickServ.
+Once connected, server information is gathered from `ADMIN`, `CAP LS`, `MODULES -all`, `VERSION`, `IRCOPS`, `MAP`, `INFO`, `LINKS`, `SERVLIST`, `STATS p`, & `LIST` replies. An attempt to register a nickname is then made by trying to contact NickServ.
 
-Lastly, every channel is joined with a `WHO` command sent & every new nick found gets a `WHOIS` sent.
+Lastly, every channel is joined with a `WHO` command sent & every new nick found gets a `WHOIS` sent. Registered channels & nicks are issued a NickServ/ChanServ `INFO` command.
 
 Once we have finishing scanning a server, the information found is saved to a JSON file. The data in the logs are stored in categories based on [numerics](https://raw.githubusercontent.com/internet-relay-chat/random/master/numerics.txt) *(001 is RPL_WELCOME, 322 is RPL_LIST, etc)* & events *(JOIN, MODE, KILL, etc)*.