mirror of
https://github.com/jlu5/PyLink.git
synced 2024-11-01 09:19:23 +01:00
f4da1fc94c
Conflicts: VERSION classes.py docs/faq.md example-conf.yml protocols/p10.py pylink world.py
45 lines
1.6 KiB
Python
45 lines
1.6 KiB
Python
# servprotect.py: Protects against KILL and nick collision floods
|
|
from expiringdict import ExpiringDict
|
|
|
|
from pylinkirc import utils, conf
|
|
from pylinkirc.log import log
|
|
|
|
# check for definitions
|
|
servprotect_conf = conf.conf.get('servprotect', {})
|
|
length = servprotect_conf.get('length', 10)
|
|
age = servprotect_conf.get('age', 10)
|
|
|
|
savecache = ExpiringDict(max_len=length, max_age_seconds=age)
|
|
killcache = ExpiringDict(max_len=length, max_age_seconds=age)
|
|
|
|
def handle_kill(irc, numeric, command, args):
|
|
"""
|
|
Tracks kills against PyLink clients. If too many are received,
|
|
automatically disconnects from the network.
|
|
"""
|
|
|
|
if (args['userdata'] and irc.is_internal_server(args['userdata'].server)) or irc.is_internal_client(args['target']):
|
|
if killcache.setdefault(irc.name, 1) >= length:
|
|
log.error('(%s) servprotect: Too many kills received, aborting!', irc.name)
|
|
irc.disconnect()
|
|
|
|
log.debug('(%s) servprotect: Incrementing killcache by 1', irc.name)
|
|
killcache[irc.name] += 1
|
|
|
|
utils.add_hook(handle_kill, 'KILL')
|
|
|
|
def handle_save(irc, numeric, command, args):
|
|
"""
|
|
Tracks SAVEs (nick collision) against PyLink clients. If too many are received,
|
|
automatically disconnects from the network.
|
|
"""
|
|
if irc.is_internal_client(args['target']):
|
|
if savecache.setdefault(irc.name, 0) >= length:
|
|
log.error('(%s) servprotect: Too many nick collisions, aborting!', irc.name)
|
|
irc.disconnect()
|
|
|
|
log.debug('(%s) servprotect: Incrementing savecache by 1', irc.name)
|
|
savecache[irc.name] += 1
|
|
|
|
utils.add_hook(handle_save, 'SAVE')
|