1
mirror of git://git.acid.vegas/IRCP.git synced 2024-11-22 16:06:41 +00:00
IRCP/ircp.py

406 lines
14 KiB
Python
Raw Normal View History

2023-05-25 20:03:39 +00:00
#!/usr/bin/env python
# internet relay chat probe for https://internetrelaychat.org/ - developed by acidvegas in python (https://git.acid.vegas/ircp)
import asyncio
import copy
import json
import os
import random
import ssl
import sys
import time
class settings:
2023-05-28 04:44:07 +00:00
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
2023-05-25 20:03:39 +00:00
class throttle:
channels = 3 # Maximum number of channels to scan at once
delay = 120 # Delay before registering nick (if enabled) & sending /LIST
join = 10 # Delay between channel JOINs
nick = 300 # Delay between every random NICK change
part = 3 # Delay before PARTing a channel
2023-05-25 20:03:39 +00:00
threads = 100 # Maximum number of threads running
timeout = 15 # Timeout for all sockets
whois = 3 # Delay between WHOIS requests
ztimeout = 200 # Timeout for zero data from server
donotscan = (
'irc.dronebl.org',
'irc.alphachat.net',
'5.9.164.48',
'45.32.74.177',
'149.248.55.130',
'104.238.146.46',
'2001:19f0:6001:1dc::1',
'2001:19f0:b001:ce3::1',
'2a01:4f8:160:2501:48:164:9:5',
'2001:19f0:6401:17c::1'
)
2023-05-25 20:03:39 +00:00
snapshot = {
'server' : None,
'host' : None,
2023-05-27 22:47:43 +00:00
'raw' : [], # all other data goes in here
2023-05-25 20:03:39 +00:00
'NOTICE' : None,
'services' : False,
'ssl' : False,
2023-05-25 20:03:39 +00:00
# server information
'001' : None, # RPL_WELCOME
'002' : None, # RPL_YOURHOST
'003' : None, # RPL_CREATED
'004' : None, # RPL_MYINFO
'005' : None, # RPL_ISUPPORT
'006' : None, # RPL_MAP
'018' : None, # RPL_MAPUSERS
'257' : None, # RPL_ADMINLOC1
'258' : None, # RPL_ADMINLOC2
'259' : None, # RPL_ADMINEMAIL
2023-05-26 07:26:45 +00:00
'351' : None, # RPL_VERSION
'364' : None, # RPL_LINKS
'372' : None, # RPL_MOTD
2023-05-25 20:03:39 +00:00
# statistic information (lusers)
'250' : None, # RPL_STATSCONN
'251' : None, # RPL_LUSERCLIENT
'252' : None, # RPL_LUSEROP
'254' : None, # RPL_LUSERCHANNELS
'255' : None, # RPL_LUSERME
'265' : None, # RPL_LOCALUSERS
'266' : None, # RPL_GLOBALUSERS
# channel information
'332' : None, # RPL_TOPIC
'353' : None, # RPL_NAMREPLY
'322' : None, # RPL_LIST
# user information (whois/who)
'311' : None, # RPL_WHOISUSER
'307' : None, # RPL_WHOISREGNICK
'312' : None, # RPL_WHOISSERVER
'671' : None, # RPL_WHOISSECURE
'319' : None, # RPL_WHOISCHANNELS
'320' : None, # RPL_WHOISSPECIAL
'276' : None, # RPL_WHOISCERTFP
'330' : None, # RPL_WHOISACCOUNT
'338' : None, # RPL_WHOISACTUALLY
'352' : None, # RPL_WHOREPLY
2023-05-26 07:26:45 +00:00
# bad channel numerics
2023-05-25 20:03:39 +00:00
'470' : None, # ERR_LINKCHANNEL
'471' : None, # ERR_CHANNELISFULL
'473' : None, # ERR_INVITEONLYCHAN
'474' : None, # ERR_BANNEDFROMCHAN
'475' : None, # ERR_BADCHANNELKEY
'477' : None, # ERR_NEEDREGGEDNICK
'489' : None, # ERR_SECUREONLYCHAN
'519' : None, # ERR_TOOMANYUSERS
'520' : None, # ERR_OPERONLY
2023-05-26 07:26:45 +00:00
# bad server numerics
2023-05-25 20:03:39 +00:00
'464' : None, # ERR_PASSWDMISMATCH
'465' : None, # ERR_YOUREBANNEDCREEP
'466' : None, # ERR_YOUWILLBEBANNED
2023-05-26 07:26:45 +00:00
'421' : None # ERR_UNKNOWNCOMMAND
2023-05-25 20:03:39 +00:00
}
def debug(data):
print('{0} | [~] - {1}'.format(time.strftime('%I:%M:%S'), data))
def error(data, reason=None):
if settings.errors:
print('{0} | [!] - {1} ({2})'.format(time.strftime('%I:%M:%S'), data, str(reason))) if reason else print('{0} | [!] - {1}'.format(time.strftime('%I:%M:%S'), data))
def rndnick():
prefix = random.choice(['st','sn','cr','pl','pr','fr','fl','qu','br','gr','sh','sk','tr','kl','wr','bl']+list('bcdfgklmnprstvwz'))
midfix = random.choice(('aeiou'))+random.choice(('aeiou'))+random.choice(('bcdfgklmnprstvwz'))
suffix = random.choice(['ed','est','er','le','ly','y','ies','iest','ian','ion','est','ing','led','inger']+list('abcdfgklmnprstvwz'))
return prefix+midfix+suffix
def ssl_ctx():
ctx = ssl.create_default_context()
ctx.check_hostname = False
ctx.verify_mode = ssl.CERT_NONE
return ctx
class probe:
def __init__(self, server, semaphore):
self.server = server
2023-05-27 22:47:43 +00:00
self.display = server.ljust(18)+' | '
2023-05-25 20:03:39 +00:00
self.semaphore = semaphore
2023-05-27 22:47:43 +00:00
self.nickname = None
2023-05-25 20:03:39 +00:00
self.snapshot = copy.deepcopy(snapshot) # <--- GET FUCKED PYTHON
2023-05-27 22:47:43 +00:00
self.channels = {'all':list(), 'current':list(), 'users':dict()}
2023-05-25 20:03:39 +00:00
self.nicks = {'all':list(), 'check':list()}
self.loops = {'init':None,'chan':None,'nick':None,'whois':None}
2023-05-25 20:03:39 +00:00
self.reader = None
self.writer = None
async def run(self):
async with self.semaphore:
try:
await self.connect()
except Exception as ex:
2023-05-27 22:47:43 +00:00
error(self.display + 'failed to connect using SSL/TLS', ex)
2023-05-25 20:03:39 +00:00
try:
await self.connect(True)
except Exception as ex:
2023-05-27 22:47:43 +00:00
error(self.display + 'failed to connect', ex)
2023-05-25 20:03:39 +00:00
async def raw(self, data):
self.writer.write(data[:510].encode('utf-8') + b'\r\n')
await self.writer.drain()
async def connect(self, fallback=False):
options = {
'host' : self.server,
'port' : 6667 if fallback else 6697,
'limit' : 1024,
'ssl' : None if fallback else ssl_ctx(),
'family' : 2, # 2 = IPv4 | 10 = IPv6 (TODO: Check for IPv6 using server DNS)
'local_addr' : settings.vhost
}
identity = {
'nick': settings.nickname if settings.nickname else rndnick(),
'user': settings.username if settings.username else rndnick(),
'real': settings.realname if settings.realname else rndnick()
}
2023-05-28 02:16:31 +00:00
self.nickname = identity['nick']
2023-05-25 20:03:39 +00:00
self.reader, self.writer = await asyncio.wait_for(asyncio.open_connection(**options), throttle.timeout)
if not fallback:
self.snapshot['ssl'] = True
2023-05-25 20:03:39 +00:00
await self.raw('USER {0} 0 * :{1}'.format(identity['user'], identity['real']))
await self.raw('NICK ' + identity['nick'])
await self.listen()
2023-05-26 07:26:45 +00:00
for item in self.loops:
if self.loops[item]:
self.loops[item].cancel()
2023-05-25 20:03:39 +00:00
for item in [rm for rm in self.snapshot if not self.snapshot[rm]]:
del self.snapshot[item]
2023-05-27 22:47:43 +00:00
with open(f'logs/{self.server}.json', 'w') as fp:
2023-05-25 20:03:39 +00:00
json.dump(self.snapshot, fp)
2023-05-27 22:47:43 +00:00
debug(self.display + 'finished scanning')
2023-05-25 20:03:39 +00:00
async def loop_initial(self):
try:
await asyncio.sleep(throttle.delay)
login = {
'pass': settings.ns_pass if settings.ns_pass else rndnick(),
'mail': settings.ns_mail if settings.ns_mail else f'{rndnick()}@{rndnick()}.'+random.choice(('com','net','org'))
2023-05-25 20:03:39 +00:00
}
for command in ('ADMIN', 'VERSION', 'LINKS', 'MAP', 'PRIVMSG NickServ :REGISTER {0} {1}'.format(login['pass'], login['mail']), 'LIST'):
try:
await self.raw(command)
except:
break
else:
await asyncio.sleep(1.5)
if not self.channels['all']:
2023-05-27 22:47:43 +00:00
error(self.display + 'no channels found')
2023-05-25 20:03:39 +00:00
await self.raw('QUIT')
except asyncio.CancelledError:
pass
2023-05-27 23:15:08 +00:00
except Exception as ex:
error(self.display + 'error in loop_initial', ex)
2023-05-25 20:03:39 +00:00
async def loop_channels(self):
try:
while self.channels['all']:
while len(self.channels['current']) >= throttle.channels:
await asyncio.sleep(1)
chan = random.choice(self.channels['all'])
self.channels['all'].remove(chan)
try:
await self.raw('JOIN ' + chan)
except:
break
else:
await asyncio.sleep(throttle.join)
2023-05-27 22:47:43 +00:00
del self.channels['users'][chan]
self.loops['nick'].cancel()
2023-05-25 20:03:39 +00:00
while self.nicks['check']:
await asyncio.sleep(1)
self.loops['whois'].cancel()
2023-05-25 20:03:39 +00:00
await self.raw('QUIT')
except asyncio.CancelledError:
pass
2023-05-27 23:15:08 +00:00
except Exception as ex:
error(self.display + 'error in loop_channels', ex)
2023-05-25 20:03:39 +00:00
async def loop_nick(self):
try:
while True:
await asyncio.sleep(throttle.nick)
self.nickname = rndnick()
await self.raw('NICK ' + self.nickname)
except asyncio.CancelledError:
pass
except Exception as ex:
error(self.display + 'error in loop_nick', ex)
2023-05-25 20:03:39 +00:00
async def loop_whois(self):
try:
while True:
if self.nicks['check']:
nick = random.choice(self.nicks['check'])
self.nicks['check'].remove(nick)
2023-05-27 22:47:43 +00:00
debug(self.display + 'WHOIS ' + nick)
2023-05-25 20:03:39 +00:00
try:
await self.raw('WHOIS ' + nick)
except:
break
else:
await asyncio.sleep(throttle.whois)
else:
await asyncio.sleep(1)
except asyncio.CancelledError:
pass
2023-05-27 23:15:08 +00:00
except Exception as ex:
error(self.display + 'error in loop_whois', ex)
2023-05-25 20:03:39 +00:00
async def listen(self):
2023-05-27 23:15:08 +00:00
while True:
2023-05-26 07:26:45 +00:00
try:
2023-05-27 23:15:08 +00:00
if self.reader.at_eof(): # TODO: can we use while self.reader.at_eof() outside of the try block?
break
2023-05-28 05:21:47 +00:00
data = await asyncio.wait_for(self.reader.readuntil(b'\r\n'), throttle.ztimeout)
line = data.decode('utf-8').strip()
args = line.split()
2023-05-25 20:03:39 +00:00
numeric = args[1]
2023-05-28 05:21:47 +00:00
#debug(line)
if numeric in self.snapshot:
if not self.snapshot[numeric]:
self.snapshot[numeric] = line
elif line not in self.snapshot[numeric]:
if type(self.snapshot[numeric]) == list:
self.snapshot[numeric].append(line)
elif type(self.snapshot[numeric]) == str:
self.snapshot[numeric] = [self.snapshot[numeric], line]
else:
self.snapshot['raw'].append(line)
2023-05-27 22:47:43 +00:00
if line.startswith('ERROR :Closing Link'):
raise Exception('DroneBL') if 'dronebl' in line.lower() else Exception('Banned')
2023-05-27 22:51:27 +00:00
elif line.startswith('ERROR :Trying to reconnect too fast') or line.startswith('ERROR :Your host is trying to (re)connect too fast') or line.startswith('ERROR :Reconnecting too fast'):
2023-05-27 22:47:43 +00:00
raise Exception('Throttled')
elif line.startswith('ERROR :Access denied'):
raise Exception('Access denied')
2023-05-25 20:03:39 +00:00
elif args[0] == 'PING':
await self.raw('PONG ' + args[1][1:])
elif numeric == '001': #RPL_WELCOME
host = args[0][1:]
self.snapshot['server'] = self.server
self.snapshot['host'] = host
if len(host) > 25:
2023-05-27 22:47:43 +00:00
self.display = f'{self.server.ljust(18)} | {host[:22]}... | '
2023-05-25 20:03:39 +00:00
else:
2023-05-27 22:47:43 +00:00
self.display = f'{self.server.ljust(18)} | {host.ljust(25)} | '
debug(self.display + 'connected')
2023-05-25 20:03:39 +00:00
self.loops['init'] = asyncio.create_task(self.loop_initial())
elif numeric == '322' and len(args) >= 5: # RPL_LIST
chan = args[3]
users = args[4]
self.channels['all'].append(chan)
2023-05-27 22:47:43 +00:00
self.channels['users'][chan] = users
2023-05-25 20:03:39 +00:00
elif numeric == '323': # RPL_LISTEND
if self.channels['all']:
2023-05-27 22:47:43 +00:00
debug(self.display + 'found {0} channel(s)'.format(str(len(self.channels['all']))))
self.loops['chan'] = asyncio.create_task(self.loop_channels())
self.loops['nick'] = asyncio.create_task(self.loop_nick())
self.loops['whois'] = asyncio.create_task(self.loop_whois())
2023-05-25 20:03:39 +00:00
elif numeric == '352' and len(args) >= 8: # RPL_WHORPL
nick = args[7]
2023-05-27 23:15:08 +00:00
if nick not in self.nicks['all']+['BOPM','ChanServ','HOPM']:
2023-05-25 20:03:39 +00:00
self.nicks['all'].append(nick)
self.nicks['check'].append(nick)
elif numeric == '366' and len(args) >= 4: # RPL_ENDOFNAMES
chan = args[3]
self.channels['current'].append(chan)
2023-05-27 22:47:43 +00:00
if chan in self.channels['users']:
debug('{0}scanning {1} users in {2}'.format(self.display, self.channels['users'][chan].ljust(4), chan))
2023-05-25 20:03:39 +00:00
else:
2023-05-28 02:39:30 +00:00
debug(f'{self.display}scanning users in {chan}')
2023-05-25 20:03:39 +00:00
await self.raw('WHO ' + chan)
await asyncio.sleep(throttle.part)
await self.raw('PART ' + chan)
self.channels['current'].remove(chan)
elif numeric == '421' and len(args) >= 3: # ERR_UNKNOWNCOMMAND
msg = ' '.join(args[2:])
if 'You must be connected for' in msg:
2023-05-27 22:47:43 +00:00
error(self.display + 'delay found', msg)
2023-05-25 20:03:39 +00:00
elif numeric == '433': # ERR_NICKINUSE
if not settings.nickname:
await self.raw('NICK ' + rndnick())
else:
await self.raw('NICK ' + settings.nickname + str(random.randint(1000,9999)))
2023-05-26 01:22:42 +00:00
elif numeric == '465': # ERR_YOUREBANNEDCREEP
2023-05-27 22:47:43 +00:00
raise Exception('K-Lined')
2023-05-25 20:03:39 +00:00
elif numeric == '464': # ERR_PASSWDMISMATCH
2023-05-27 22:47:43 +00:00
raise Exception('Network has a password')
elif numeric in ('NOTICE','PRIVMSG') and len(args) >= 4:
nick = args[0].split('!')[1:]
target = args[2]
msg = ' '.join(args[3:])[1:]
if target == self.nickname:
for i in ('You must have been using this nick for','You must be connected for','not connected long enough','Please wait', 'You cannot list within the first'):
if i in msg:
2023-05-27 22:47:43 +00:00
error(self.display + 'delay found', msg)
break
if msg[:8] == '\001VERSION':
2023-05-28 02:19:37 +00:00
version = random.choice(('http://www.mibbit.com ajax IRC Client','mIRC v6.35 Khaled Mardam-Bey','xchat 0.24.1 Linux 2.6.27-8-eeepc i686','rZNC Version 1.0 [02/01/11] - Built from ZNC','thelounge v3.0.0 -- https://thelounge.chat/'))
2023-05-27 22:47:43 +00:00
await self.raw(f'NOTICE {nick} \001VERSION {version}\001')
elif nick == 'NickServ':
self.snapshot['services'] = True
elif '!' not in args[0]:
if 'dronebl.org/lookup' in msg:
raise Exception('DroneBL')
else:
if [i for i in ('You\'re banned','You are permanently banned','You are banned','You are not welcome') if i in msg]:
raise Exception('K-Lined')
2023-05-26 07:26:45 +00:00
except (UnicodeDecodeError, UnicodeEncodeError):
pass
except Exception as ex:
2023-05-27 22:47:43 +00:00
error(self.display + 'fatal error occured', ex)
2023-05-26 07:26:45 +00:00
break
2023-05-25 20:03:39 +00:00
async def main(targets):
sema = asyncio.BoundedSemaphore(throttle.threads) # B O U N D E D S E M A P H O R E G A N G
jobs = list()
for target in targets:
jobs.append(asyncio.ensure_future(probe(target, sema).run()))
await asyncio.gather(*jobs)
# Main
print('#'*56)
print('#{:^54}#'.format(''))
print('#{:^54}#'.format('Internet Relay Chat Probe (IRCP)'))
print('#{:^54}#'.format('Developed by acidvegas in Python'))
print('#{:^54}#'.format('https://git.acid.vegas/ircp'))
print('#{:^54}#'.format(''))
print('#'*56)
if len(sys.argv) != 2:
raise SystemExit('error: invalid arguments')
else:
targets_file = sys.argv[1]
if not os.path.isfile(targets_file):
raise SystemExit('error: invalid file path')
else:
targets = [line.rstrip() for line in open(targets_file).readlines() if line and line not in donotscan]
2023-05-25 20:03:39 +00:00
found = len(targets)
debug(f'loaded {found:,} targets')
targets = [target for target in targets if not os.path.isfile(f'logs/{target}.json')] # Do not scan targets we already have logged for
if len(targets) < found:
debug(f'removed {found-len(targets):,} targets we already have logs for already')
random.shuffle(targets)
try:
os.mkdir('logs')
except FileExistsError:
pass
loop = asyncio.get_event_loop()
loop.run_until_complete(main(targets))
debug('IRCP has finished probing!')