IRCP- information gathering tool for irc servers |
git clone git://git.acid.vegas/IRCP.git |
Log | Files | Refs | Archive | README | LICENSE |
commit 483969d3cea298fdfa4ece0d1a0134844bc523ef
parent e3d92a32b6378872f164aa404e0b6849df65854b Author: acidvegas <acid.vegas@acid.vegas> Date: Sun, 28 May 2023 00:44:07 -0400 Changed hate mail address Diffstat:
|
1 file changed, 7 insertions(+), 7 deletions(-) |
diff --git a/ircp.py b/ircp.py @@ -11,13 +11,13 @@ import sys import time class settings: - errors = False # Show errors in console - nickname = 'IRCP' - username = 'ircp' - realname = 'internetrelaychat.org' - ns_mail = 'ircp@internetrelaychat.org' - ns_pass = 'changeme' - vhost = None # Bind to a specific IP address + errors = False # Show errors in console + nickname = 'IRCP' # None = random + username = 'ircp' # None = random + realname = 'internetrelaychat.org' # None = random + ns_mail = 'scan@internetrelaychat.org' # None = random@random.[com|net|org] + ns_pass = 'changeme' # None = random + vhost = None # Bind to a specific IP address class throttle: channels = 3 # Maximum number of channels to scan at once |