mirror of
https://github.com/iio612/DEFENDER.git
synced 2026-02-14 11:44:23 +00:00
Compare commits
20 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3c043cefd8 | ||
|
|
59a75cecd8 | ||
|
|
71053437a7 | ||
|
|
7796d05206 | ||
|
|
5f2567f9e5 | ||
|
|
aaa1dd9a1a | ||
|
|
a02f2f9a26 | ||
|
|
d73adb6f0b | ||
|
|
b812e64992 | ||
|
|
9bd1f68df2 | ||
|
|
f44b08bf36 | ||
|
|
1a19e1613a | ||
|
|
cdc15b7b47 | ||
|
|
31fe9f62ec | ||
|
|
f0853e3afb | ||
|
|
6dade09257 | ||
|
|
9533b010b2 | ||
|
|
824db73590 | ||
|
|
96bf4b6f80 | ||
|
|
922336363e |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -5,4 +5,3 @@ __pycache__/
|
|||||||
configuration.json
|
configuration.json
|
||||||
install.log
|
install.log
|
||||||
test.py
|
test.py
|
||||||
# mods/mod_ia.py
|
|
||||||
@@ -307,7 +307,7 @@ class Base:
|
|||||||
|
|
||||||
def db_update_core_config(self, module_name:str, dataclassObj: object, param_key:str, param_value: str) -> bool:
|
def db_update_core_config(self, module_name:str, dataclassObj: object, param_key:str, param_value: str) -> bool:
|
||||||
|
|
||||||
core_table = self.Config.table_config
|
core_table = 'core_config'
|
||||||
# Check if the param exist
|
# Check if the param exist
|
||||||
if not hasattr(dataclassObj, param_key):
|
if not hasattr(dataclassObj, param_key):
|
||||||
self.logs.error(f"Le parametre {param_key} n'existe pas dans la variable global")
|
self.logs.error(f"Le parametre {param_key} n'existe pas dans la variable global")
|
||||||
@@ -330,10 +330,6 @@ class Base:
|
|||||||
if updated_rows > 0:
|
if updated_rows > 0:
|
||||||
setattr(dataclassObj, param_key, self.int_if_possible(param_value))
|
setattr(dataclassObj, param_key, self.int_if_possible(param_value))
|
||||||
self.logs.debug(f'Parameter updated : {param_key} - {param_value} | Module: {module_name}')
|
self.logs.debug(f'Parameter updated : {param_key} - {param_value} | Module: {module_name}')
|
||||||
else:
|
|
||||||
self.logs.error(f'Parameter NOT updated : {param_key} - {param_value} | Module: {module_name}')
|
|
||||||
else:
|
|
||||||
self.logs.error(f'Parameter and Module do not exist: Param ({param_key}) - Value ({param_value}) | Module ({module_name})')
|
|
||||||
|
|
||||||
self.logs.debug(dataclassObj)
|
self.logs.debug(dataclassObj)
|
||||||
|
|
||||||
|
|||||||
@@ -204,6 +204,7 @@ class Connection:
|
|||||||
|
|
||||||
self.send2socket(f"PRIVMSG {clone_channel} :{final_message}")
|
self.send2socket(f"PRIVMSG {clone_channel} :{final_message}")
|
||||||
|
|
||||||
|
|
||||||
except UnicodeEncodeError:
|
except UnicodeEncodeError:
|
||||||
for data in cmd:
|
for data in cmd:
|
||||||
response = data.decode(self.CHARSET[1],'replace').split()
|
response = data.decode(self.CHARSET[1],'replace').split()
|
||||||
|
|||||||
161
core/irc.py
161
core/irc.py
@@ -1,4 +1,4 @@
|
|||||||
import ssl, re, importlib, sys, time, threading, socket, traceback
|
import ssl, re, importlib, sys, time, threading, socket
|
||||||
from ssl import SSLSocket
|
from ssl import SSLSocket
|
||||||
from datetime import datetime, timedelta
|
from datetime import datetime, timedelta
|
||||||
from typing import Union, Literal
|
from typing import Union, Literal
|
||||||
@@ -176,7 +176,6 @@ class Irc:
|
|||||||
self.Base.logs.critical(f"AttributeError: {atte}")
|
self.Base.logs.critical(f"AttributeError: {atte}")
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
self.Base.logs.critical(f"Exception: {e}")
|
self.Base.logs.critical(f"Exception: {e}")
|
||||||
self.Base.logs.critical(traceback.print_exc())
|
|
||||||
|
|
||||||
def __link(self, writer:Union[socket.socket, SSLSocket]) -> None:
|
def __link(self, writer:Union[socket.socket, SSLSocket]) -> None:
|
||||||
"""Créer le link et envoyer les informations nécessaires pour la
|
"""Créer le link et envoyer les informations nécessaires pour la
|
||||||
@@ -275,20 +274,14 @@ class Irc:
|
|||||||
response = data.decode(self.CHARSET[0]).split()
|
response = data.decode(self.CHARSET[0]).split()
|
||||||
self.cmd(response)
|
self.cmd(response)
|
||||||
|
|
||||||
except UnicodeEncodeError as ue:
|
except UnicodeEncodeError:
|
||||||
for data in responses:
|
for data in responses:
|
||||||
response = data.decode(self.CHARSET[1],'replace').split()
|
response = data.decode(self.CHARSET[1],'replace').split()
|
||||||
self.cmd(response)
|
self.cmd(response)
|
||||||
self.Base.logs.error(f'UnicodeEncodeError: {ue}')
|
except UnicodeDecodeError:
|
||||||
self.Base.logs.error(response)
|
|
||||||
|
|
||||||
except UnicodeDecodeError as ud:
|
|
||||||
for data in responses:
|
for data in responses:
|
||||||
response = data.decode(self.CHARSET[1],'replace').split()
|
response = data.decode(self.CHARSET[1],'replace').split()
|
||||||
self.cmd(response)
|
self.cmd(response)
|
||||||
self.Base.logs.error(f'UnicodeDecodeError: {ud}')
|
|
||||||
self.Base.logs.error(response)
|
|
||||||
|
|
||||||
except AssertionError as ae:
|
except AssertionError as ae:
|
||||||
self.Base.logs.error(f"Assertion error : {ae}")
|
self.Base.logs.error(f"Assertion error : {ae}")
|
||||||
|
|
||||||
@@ -583,6 +576,7 @@ class Irc:
|
|||||||
return None
|
return None
|
||||||
|
|
||||||
def thread_check_for_new_version(self, fromuser: str) -> None:
|
def thread_check_for_new_version(self, fromuser: str) -> None:
|
||||||
|
|
||||||
dnickname = self.Config.SERVICE_NICKNAME
|
dnickname = self.Config.SERVICE_NICKNAME
|
||||||
|
|
||||||
if self.Base.check_for_new_version(True):
|
if self.Base.check_for_new_version(True):
|
||||||
@@ -593,39 +587,35 @@ class Irc:
|
|||||||
|
|
||||||
return None
|
return None
|
||||||
|
|
||||||
def cmd(self, data: list[str]) -> None:
|
def cmd(self, data:list) -> None:
|
||||||
"""Parse server response
|
|
||||||
|
|
||||||
Args:
|
|
||||||
data (list[str]): Server response splitted in a list
|
|
||||||
"""
|
|
||||||
try:
|
try:
|
||||||
original_response: list[str] = data.copy()
|
|
||||||
|
|
||||||
interm_response: list[str] = data.copy()
|
cmd_to_send:list[str] = data.copy()
|
||||||
"""This the original without first value"""
|
cmd = data.copy()
|
||||||
|
|
||||||
interm_response.pop(0)
|
cmd_to_debug = data.copy()
|
||||||
|
cmd_to_debug.pop(0)
|
||||||
|
|
||||||
if len(original_response) == 0 or len(original_response) == 1:
|
if len(cmd) == 0 or len(cmd) == 1:
|
||||||
self.Base.logs.warning(f'Size ({str(len(original_response))}) - {original_response}')
|
self.Base.logs.warning(f'Size ({str(len(cmd))}) - {cmd}')
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if len(original_response) == 7:
|
# self.debug(cmd_to_debug)
|
||||||
if original_response[2] == 'PRIVMSG' and original_response[4] == ':auth':
|
if len(data) == 7:
|
||||||
data_copy = original_response.copy()
|
if data[2] == 'PRIVMSG' and data[4] == ':auth':
|
||||||
|
data_copy = data.copy()
|
||||||
data_copy[6] = '**********'
|
data_copy[6] = '**********'
|
||||||
self.Base.logs.debug(data_copy)
|
self.Base.logs.debug(data_copy)
|
||||||
else:
|
else:
|
||||||
self.Base.logs.debug(original_response)
|
self.Base.logs.debug(data)
|
||||||
else:
|
else:
|
||||||
self.Base.logs.debug(original_response)
|
self.Base.logs.debug(data)
|
||||||
|
|
||||||
match original_response[0]:
|
match cmd[0]:
|
||||||
|
|
||||||
case 'PING':
|
case 'PING':
|
||||||
# Sending PONG response to the serveur
|
# Sending PONG response to the serveur
|
||||||
pong = str(original_response[1]).replace(':','')
|
pong = str(cmd[1]).replace(':','')
|
||||||
self.send2socket(f"PONG :{pong}")
|
self.send2socket(f"PONG :{pong}")
|
||||||
return None
|
return None
|
||||||
|
|
||||||
@@ -634,19 +624,19 @@ class Irc:
|
|||||||
# 'PREFIX=(qaohv)~&@%+', 'SID=001', 'MLOCK', 'TS=1703793941', 'EXTSWHOIS']
|
# 'PREFIX=(qaohv)~&@%+', 'SID=001', 'MLOCK', 'TS=1703793941', 'EXTSWHOIS']
|
||||||
|
|
||||||
# GET SERVER ID HOST
|
# GET SERVER ID HOST
|
||||||
if len(original_response) > 5:
|
if len(cmd) > 5:
|
||||||
if '=' in original_response[5]:
|
if '=' in cmd[5]:
|
||||||
serveur_hosting_id = str(original_response[5]).split('=')
|
serveur_hosting_id = str(cmd[5]).split('=')
|
||||||
self.HSID = serveur_hosting_id[1]
|
self.HSID = serveur_hosting_id[1]
|
||||||
return False
|
return False
|
||||||
|
|
||||||
case _:
|
case _:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if len(original_response) < 2:
|
if len(cmd) < 2:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
match original_response[1]:
|
match cmd[1]:
|
||||||
|
|
||||||
case 'SLOG':
|
case 'SLOG':
|
||||||
# self.Base.scan_ports(cmd[7])
|
# self.Base.scan_ports(cmd[7])
|
||||||
@@ -657,18 +647,20 @@ class Irc:
|
|||||||
case 'REPUTATION':
|
case 'REPUTATION':
|
||||||
# :001 REPUTATION 91.168.141.239 118
|
# :001 REPUTATION 91.168.141.239 118
|
||||||
try:
|
try:
|
||||||
self.first_connexion_ip = original_response[2]
|
# if self.Config.ABUSEIPDB == 1:
|
||||||
|
# self.Base.create_thread(self.abuseipdb_scan, (cmd[2], ))
|
||||||
|
self.first_connexion_ip = cmd[2]
|
||||||
|
|
||||||
self.first_score = 0
|
self.first_score = 0
|
||||||
if str(original_response[3]).find('*') != -1:
|
if str(cmd[3]).find('*') != -1:
|
||||||
# If * available, it means that an ircop changed the repurtation score
|
# If * available, it means that an ircop changed the repurtation score
|
||||||
# means also that the user exist will try to update all users with same IP
|
# means also that the user exist will try to update all users with same IP
|
||||||
self.first_score = int(str(original_response[3]).replace('*',''))
|
self.first_score = int(str(cmd[3]).replace('*',''))
|
||||||
for user in self.User.UID_DB:
|
for user in self.User.UID_DB:
|
||||||
if user.remote_ip == self.first_connexion_ip:
|
if user.remote_ip == self.first_connexion_ip:
|
||||||
user.score_connexion = self.first_score
|
user.score_connexion = self.first_score
|
||||||
else:
|
else:
|
||||||
self.first_score = int(original_response[3])
|
self.first_score = int(cmd[3])
|
||||||
|
|
||||||
# Possibilité de déclancher les bans a ce niveau.
|
# Possibilité de déclancher les bans a ce niveau.
|
||||||
except IndexError as ie:
|
except IndexError as ie:
|
||||||
@@ -691,7 +683,7 @@ class Irc:
|
|||||||
|
|
||||||
case 'EOS':
|
case 'EOS':
|
||||||
|
|
||||||
hsid = str(original_response[0]).replace(':','')
|
hsid = str(cmd[0]).replace(':','')
|
||||||
if hsid == self.HSID:
|
if hsid == self.HSID:
|
||||||
if self.INIT == 1:
|
if self.INIT == 1:
|
||||||
current_version = self.Config.current_version
|
current_version = self.Config.current_version
|
||||||
@@ -701,6 +693,10 @@ class Irc:
|
|||||||
else:
|
else:
|
||||||
version = f'{current_version}'
|
version = f'{current_version}'
|
||||||
|
|
||||||
|
# self.send2socket(f":{self.Config.SERVICE_NICKNAME} SVSJOIN {self.Config.SERVICE_NICKNAME} {self.Config.SERVICE_CHANLOG}")
|
||||||
|
# self.send2socket(f":{self.Config.SERVICE_NICKNAME} MODE {self.Config.SERVICE_CHANLOG} +o {self.Config.SERVICE_NICKNAME}")
|
||||||
|
# self.send2socket(f":{self.Config.SERVICE_NICKNAME} MODE {self.Config.SERVICE_CHANLOG} +{self.Config.SERVICE_CMODES}")
|
||||||
|
|
||||||
print(f"################### DEFENDER ###################")
|
print(f"################### DEFENDER ###################")
|
||||||
print(f"# SERVICE CONNECTE ")
|
print(f"# SERVICE CONNECTE ")
|
||||||
print(f"# SERVEUR : {self.Config.SERVEUR_IP} ")
|
print(f"# SERVEUR : {self.Config.SERVEUR_IP} ")
|
||||||
@@ -732,15 +728,15 @@ class Irc:
|
|||||||
case _:
|
case _:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if len(original_response) < 3:
|
if len(cmd) < 3:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
match original_response[2]:
|
match cmd[2]:
|
||||||
|
|
||||||
case 'QUIT':
|
case 'QUIT':
|
||||||
# :001N1WD7L QUIT :Quit: free_znc_1
|
# :001N1WD7L QUIT :Quit: free_znc_1
|
||||||
|
cmd.pop(0)
|
||||||
uid_who_quit = str(interm_response[0]).replace(':', '')
|
uid_who_quit = str(cmd[0]).replace(':', '')
|
||||||
self.User.delete(uid_who_quit)
|
self.User.delete(uid_who_quit)
|
||||||
self.Channel.delete_user_from_all_channel(uid_who_quit)
|
self.Channel.delete_user_from_all_channel(uid_who_quit)
|
||||||
|
|
||||||
@@ -752,8 +748,10 @@ class Irc:
|
|||||||
# ['@unrealircd.org/geoip=FR;unrealircd.org/', ':001OOU2H3', 'NICK', 'WebIrc', '1703795844']
|
# ['@unrealircd.org/geoip=FR;unrealircd.org/', ':001OOU2H3', 'NICK', 'WebIrc', '1703795844']
|
||||||
# Changement de nickname
|
# Changement de nickname
|
||||||
|
|
||||||
uid = str(interm_response[0]).replace(':','')
|
# Supprimer la premiere valeur de la liste
|
||||||
newnickname = interm_response[2]
|
cmd.pop(0)
|
||||||
|
uid = str(cmd[0]).replace(':','')
|
||||||
|
newnickname = cmd[2]
|
||||||
self.User.update(uid, newnickname)
|
self.User.update(uid, newnickname)
|
||||||
|
|
||||||
case 'MODE':
|
case 'MODE':
|
||||||
@@ -768,24 +766,24 @@ class Irc:
|
|||||||
# ':001T6VU3F', '001JGWB2K', '@11ZAAAAAB',
|
# ':001T6VU3F', '001JGWB2K', '@11ZAAAAAB',
|
||||||
# '001F16WGR', '001X9YMGQ', '*+001DYPFGP', '@00BAAAAAJ', '001AAGOG9', '001FMFVG8', '001DAEEG7',
|
# '001F16WGR', '001X9YMGQ', '*+001DYPFGP', '@00BAAAAAJ', '001AAGOG9', '001FMFVG8', '001DAEEG7',
|
||||||
# '&~G:unknown-users', '"~G:websocket-users', '"~G:known-users', '"~G:webirc-users']
|
# '&~G:unknown-users', '"~G:websocket-users', '"~G:known-users', '"~G:webirc-users']
|
||||||
|
cmd.pop(0)
|
||||||
channel = str(interm_response[3]).lower()
|
channel = str(cmd[3]).lower()
|
||||||
len_cmd = len(interm_response)
|
len_cmd = len(cmd)
|
||||||
list_users:list = []
|
list_users:list = []
|
||||||
occurence = 0
|
occurence = 0
|
||||||
start_boucle = 0
|
start_boucle = 0
|
||||||
|
|
||||||
# Trouver le premier user
|
# Trouver le premier user
|
||||||
for i in range(len_cmd):
|
for i in range(len_cmd):
|
||||||
s: list = re.findall(fr':', interm_response[i])
|
s: list = re.findall(fr':', cmd[i])
|
||||||
if s:
|
if s:
|
||||||
occurence += 1
|
occurence += 1
|
||||||
if occurence == 2:
|
if occurence == 2:
|
||||||
start_boucle = i
|
start_boucle = i
|
||||||
|
|
||||||
# Boucle qui va ajouter l'ensemble des users (UID)
|
# Boucle qui va ajouter l'ensemble des users (UID)
|
||||||
for i in range(start_boucle, len(interm_response)):
|
for i in range(start_boucle, len(cmd)):
|
||||||
parsed_UID = str(interm_response[i])
|
parsed_UID = str(cmd[i])
|
||||||
# pattern = fr'[:|@|%|\+|~|\*]*'
|
# pattern = fr'[:|@|%|\+|~|\*]*'
|
||||||
# pattern = fr':'
|
# pattern = fr':'
|
||||||
# parsed_UID = re.sub(pattern, '', parsed_UID)
|
# parsed_UID = re.sub(pattern, '', parsed_UID)
|
||||||
@@ -803,31 +801,29 @@ class Irc:
|
|||||||
case 'PART':
|
case 'PART':
|
||||||
# ['@unrealircd.org/geoip=FR;unrealircd.org/userhost=50d6492c@80.214.73.44;unrealircd.org/userip=50d6492c@80.214.73.44;msgid=YSIPB9q4PcRu0EVfC9ci7y-/mZT0+Gj5FLiDSZshH5NCw;time=2024-08-15T15:35:53.772Z',
|
# ['@unrealircd.org/geoip=FR;unrealircd.org/userhost=50d6492c@80.214.73.44;unrealircd.org/userip=50d6492c@80.214.73.44;msgid=YSIPB9q4PcRu0EVfC9ci7y-/mZT0+Gj5FLiDSZshH5NCw;time=2024-08-15T15:35:53.772Z',
|
||||||
# ':001EPFBRD', 'PART', '#welcome', ':WEB', 'IRC', 'Paris']
|
# ':001EPFBRD', 'PART', '#welcome', ':WEB', 'IRC', 'Paris']
|
||||||
try:
|
uid = str(cmd[1]).replace(':','')
|
||||||
uid = str(interm_response[0]).replace(':','')
|
channel = str(cmd[3]).lower()
|
||||||
channel = str(interm_response[2]).lower()
|
|
||||||
self.Channel.delete_user_from_channel(channel, uid)
|
self.Channel.delete_user_from_channel(channel, uid)
|
||||||
|
|
||||||
except IndexError as ie:
|
pass
|
||||||
self.Base.logs.error(f'Index Error: {ie}')
|
|
||||||
|
|
||||||
case 'UID':
|
case 'UID':
|
||||||
# ['@s2s-md/geoip=cc=GB|cd=United\\sKingdom|asn=16276|asname=OVH\\sSAS;s2s-md/tls_cipher=TLSv1.3-TLS_CHACHA20_POLY1305_SHA256;s2s-md/creationtime=1721564601',
|
# ['@s2s-md/geoip=cc=GB|cd=United\\sKingdom|asn=16276|asname=OVH\\sSAS;s2s-md/tls_cipher=TLSv1.3-TLS_CHACHA20_POLY1305_SHA256;s2s-md/creationtime=1721564601',
|
||||||
# ':001', 'UID', 'albatros', '0', '1721564597', 'albatros', 'vps-91b2f28b.vps.ovh.net',
|
# ':001', 'UID', 'albatros', '0', '1721564597', 'albatros', 'vps-91b2f28b.vps.ovh.net',
|
||||||
# '001HB8G04', '0', '+iwxz', 'Clk-A62F1D18.vps.ovh.net', 'Clk-A62F1D18.vps.ovh.net', 'MyZBwg==', ':...']
|
# '001HB8G04', '0', '+iwxz', 'Clk-A62F1D18.vps.ovh.net', 'Clk-A62F1D18.vps.ovh.net', 'MyZBwg==', ':...']
|
||||||
if 'webirc' in original_response[0]:
|
if 'webirc' in cmd[0]:
|
||||||
isWebirc = True
|
isWebirc = True
|
||||||
else:
|
else:
|
||||||
isWebirc = False
|
isWebirc = False
|
||||||
|
|
||||||
uid = str(original_response[8])
|
uid = str(cmd[8])
|
||||||
nickname = str(original_response[3])
|
nickname = str(cmd[3])
|
||||||
username = str(original_response[6])
|
username = str(cmd[6])
|
||||||
hostname = str(original_response[7])
|
hostname = str(cmd[7])
|
||||||
umodes = str(original_response[10])
|
umodes = str(cmd[10])
|
||||||
vhost = str(original_response[11])
|
vhost = str(cmd[11])
|
||||||
if not 'S' in umodes:
|
if not 'S' in umodes:
|
||||||
remote_ip = self.Base.decode_ip(str(original_response[13]))
|
remote_ip = self.Base.decode_ip(str(cmd[13]))
|
||||||
else:
|
else:
|
||||||
remote_ip = '127.0.0.1'
|
remote_ip = '127.0.0.1'
|
||||||
|
|
||||||
@@ -849,19 +845,18 @@ class Irc:
|
|||||||
)
|
)
|
||||||
|
|
||||||
for classe_name, classe_object in self.loaded_classes.items():
|
for classe_name, classe_object in self.loaded_classes.items():
|
||||||
classe_object.cmd(original_response)
|
classe_object.cmd(cmd_to_send)
|
||||||
|
|
||||||
case 'PRIVMSG':
|
case 'PRIVMSG':
|
||||||
try:
|
try:
|
||||||
# Supprimer la premiere valeur
|
# Supprimer la premiere valeur
|
||||||
cmd = interm_response.copy()
|
cmd.pop(0)
|
||||||
|
|
||||||
get_uid_or_nickname = str(cmd[0].replace(':',''))
|
get_uid_or_nickname = str(cmd[0].replace(':',''))
|
||||||
user_trigger = self.User.get_nickname(get_uid_or_nickname)
|
user_trigger = self.User.get_nickname(get_uid_or_nickname)
|
||||||
dnickname = self.Config.SERVICE_NICKNAME
|
dnickname = self.Config.SERVICE_NICKNAME
|
||||||
|
|
||||||
if len(cmd) == 6:
|
if len(cmd) == 6:
|
||||||
if cmd[1] == 'PRIVMSG' and str(cmd[3]).replace(self.Config.SERVICE_PREFIX,'') == ':auth':
|
if cmd[1] == 'PRIVMSG' and str(cmd[3]).replace('.','') == ':auth':
|
||||||
cmd_copy = cmd.copy()
|
cmd_copy = cmd.copy()
|
||||||
cmd_copy[5] = '**********'
|
cmd_copy[5] = '**********'
|
||||||
self.Base.logs.info(cmd_copy)
|
self.Base.logs.info(cmd_copy)
|
||||||
@@ -918,11 +913,11 @@ class Irc:
|
|||||||
return False
|
return False
|
||||||
|
|
||||||
if not arg[0].lower() in self.commands:
|
if not arg[0].lower() in self.commands:
|
||||||
self.Base.logs.debug(f"This command {arg[0]} sent by {user_trigger} is not available")
|
self.debug(f"This command {arg[0]} is not available")
|
||||||
return False
|
return False
|
||||||
|
|
||||||
cmd_to_send = convert_to_string.replace(':','')
|
cmd_to_send = convert_to_string.replace(':','')
|
||||||
self.Base.log_cmd(user_trigger, cmd_to_send)
|
self.Base.log_cmd(self.User.get_nickname(user_trigger), cmd_to_send)
|
||||||
|
|
||||||
fromchannel = None
|
fromchannel = None
|
||||||
if len(arg) >= 2:
|
if len(arg) >= 2:
|
||||||
@@ -936,26 +931,15 @@ class Irc:
|
|||||||
case _:
|
case _:
|
||||||
pass
|
pass
|
||||||
|
|
||||||
if original_response[2] != 'UID':
|
if cmd[2] != 'UID':
|
||||||
# Envoyer la commande aux classes dynamiquement chargées
|
# Envoyer la commande aux classes dynamiquement chargées
|
||||||
for classe_name, classe_object in self.loaded_classes.items():
|
for classe_name, classe_object in self.loaded_classes.items():
|
||||||
classe_object.cmd(original_response)
|
classe_object.cmd(cmd_to_send)
|
||||||
|
|
||||||
except IndexError as ie:
|
except IndexError as ie:
|
||||||
self.Base.logs.error(f"{ie} / {original_response} / length {str(len(original_response))}")
|
self.Base.logs.error(f"{ie} / {cmd} / length {str(len(cmd))}")
|
||||||
|
|
||||||
def _hcmds(self, user: str, channel: Union[str, None], cmd: list, fullcmd: list = []) -> None:
|
def _hcmds(self, user: str, channel: Union[str, None], cmd:list, fullcmd: list = []) -> None:
|
||||||
"""_summary_
|
|
||||||
|
|
||||||
Args:
|
|
||||||
user (str): The user who sent the query
|
|
||||||
channel (Union[str, None]): If the command contain the channel
|
|
||||||
cmd (list): The defender cmd
|
|
||||||
fullcmd (list, optional): The full list of the cmd coming from PRIVMS. Defaults to [].
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
None: Nothing to return
|
|
||||||
"""
|
|
||||||
|
|
||||||
fromuser = self.User.get_nickname(user) # Nickname qui a lancé la commande
|
fromuser = self.User.get_nickname(user) # Nickname qui a lancé la commande
|
||||||
uid = self.User.get_uid(fromuser) # Récuperer le uid de l'utilisateur
|
uid = self.User.get_uid(fromuser) # Récuperer le uid de l'utilisateur
|
||||||
@@ -1301,6 +1285,10 @@ class Irc:
|
|||||||
results = self.Base.db_execute_query(f'SELECT module_name FROM {self.Config.table_module}')
|
results = self.Base.db_execute_query(f'SELECT module_name FROM {self.Config.table_module}')
|
||||||
results = results.fetchall()
|
results = results.fetchall()
|
||||||
|
|
||||||
|
# if len(results) == 0:
|
||||||
|
# self.send2socket(f":{dnickname} NOTICE {fromuser} :There is no module loaded")
|
||||||
|
# return False
|
||||||
|
|
||||||
found = False
|
found = False
|
||||||
|
|
||||||
for module in all_modules:
|
for module in all_modules:
|
||||||
@@ -1315,6 +1303,9 @@ class Irc:
|
|||||||
|
|
||||||
found = False
|
found = False
|
||||||
|
|
||||||
|
# for r in results:
|
||||||
|
# self.send2socket(f":{dnickname} NOTICE {fromuser} :{r[0]} - {self.Config.CONFIG_COLOR['verte']}Loaded{self.Config.CONFIG_COLOR['nogc']}")
|
||||||
|
|
||||||
case 'show_timers':
|
case 'show_timers':
|
||||||
|
|
||||||
if self.Base.running_timers:
|
if self.Base.running_timers:
|
||||||
|
|||||||
@@ -940,7 +940,7 @@ class Defender():
|
|||||||
except ValueError as ve:
|
except ValueError as ve:
|
||||||
self.Logs.error(f"Thread_cloudfilt_scan Error : {ve}")
|
self.Logs.error(f"Thread_cloudfilt_scan Error : {ve}")
|
||||||
|
|
||||||
def cmd(self, data: list) -> None:
|
def cmd(self, data:list) -> None:
|
||||||
|
|
||||||
service_id = self.Config.SERVICE_ID # Defender serveur id
|
service_id = self.Config.SERVICE_ID # Defender serveur id
|
||||||
cmd = list(data).copy()
|
cmd = list(data).copy()
|
||||||
|
|||||||
@@ -1,179 +0,0 @@
|
|||||||
from dataclasses import dataclass
|
|
||||||
from core.irc import Irc
|
|
||||||
from unrealircd_rpc_py.Live import Live
|
|
||||||
|
|
||||||
|
|
||||||
class Jsonrpc():
|
|
||||||
|
|
||||||
@dataclass
|
|
||||||
class ModConfModel:
|
|
||||||
"""The Model containing the module parameters
|
|
||||||
"""
|
|
||||||
param_exemple1: str
|
|
||||||
param_exemple2: int
|
|
||||||
|
|
||||||
def __init__(self, ircInstance:Irc) -> None:
|
|
||||||
|
|
||||||
# Module name (Mandatory)
|
|
||||||
self.module_name = 'mod_' + str(self.__class__.__name__).lower()
|
|
||||||
|
|
||||||
# Add Irc Object to the module (Mandatory)
|
|
||||||
self.Irc = ircInstance
|
|
||||||
|
|
||||||
# Add Global Configuration to the module (Mandatory)
|
|
||||||
self.Config = ircInstance.Config
|
|
||||||
|
|
||||||
# Add Base object to the module (Mandatory)
|
|
||||||
self.Base = ircInstance.Base
|
|
||||||
|
|
||||||
# Add logs object to the module (Mandatory)
|
|
||||||
self.Logs = ircInstance.Base.logs
|
|
||||||
|
|
||||||
# Add User object to the module (Mandatory)
|
|
||||||
self.User = ircInstance.User
|
|
||||||
|
|
||||||
# Add Channel object to the module (Mandatory)
|
|
||||||
self.Channel = ircInstance.Channel
|
|
||||||
|
|
||||||
# Create module commands (Mandatory)
|
|
||||||
self.commands_level = {
|
|
||||||
1: ['jsonrpc']
|
|
||||||
}
|
|
||||||
|
|
||||||
# Init the module
|
|
||||||
self.__init_module()
|
|
||||||
|
|
||||||
# Log the module
|
|
||||||
self.Logs.debug(f'Module {self.module_name} loaded ...')
|
|
||||||
|
|
||||||
def __init_module(self) -> None:
|
|
||||||
|
|
||||||
# Insert module commands into the core one (Mandatory)
|
|
||||||
self.__set_commands(self.commands_level)
|
|
||||||
|
|
||||||
# Create you own tables (Mandatory)
|
|
||||||
# self.__create_tables()
|
|
||||||
|
|
||||||
# Load module configuration and sync with core one (Mandatory)
|
|
||||||
self.__load_module_configuration()
|
|
||||||
# End of mandatory methods you can start your customization #
|
|
||||||
|
|
||||||
return None
|
|
||||||
|
|
||||||
def __set_commands(self, commands:dict[int, list[str]]) -> None:
|
|
||||||
"""### Rajoute les commandes du module au programme principal
|
|
||||||
|
|
||||||
Args:
|
|
||||||
commands (list): Liste des commandes du module
|
|
||||||
"""
|
|
||||||
for level, com in commands.items():
|
|
||||||
for c in commands[level]:
|
|
||||||
if not c in self.Irc.commands:
|
|
||||||
self.Irc.commands_level[level].append(c)
|
|
||||||
self.Irc.commands.append(c)
|
|
||||||
|
|
||||||
return None
|
|
||||||
|
|
||||||
def __create_tables(self) -> None:
|
|
||||||
"""Methode qui va créer la base de donnée si elle n'existe pas.
|
|
||||||
Une Session unique pour cette classe sera crée, qui sera utilisé dans cette classe / module
|
|
||||||
Args:
|
|
||||||
database_name (str): Nom de la base de données ( pas d'espace dans le nom )
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
None: Aucun retour n'es attendu
|
|
||||||
"""
|
|
||||||
|
|
||||||
table_logs = '''CREATE TABLE IF NOT EXISTS test_logs (
|
|
||||||
id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
||||||
datetime TEXT,
|
|
||||||
server_msg TEXT
|
|
||||||
)
|
|
||||||
'''
|
|
||||||
|
|
||||||
self.Base.db_execute_query(table_logs)
|
|
||||||
return None
|
|
||||||
|
|
||||||
def callback_sent_to_irc(self, json_response: str):
|
|
||||||
dnickname = self.Config.SERVICE_NICKNAME
|
|
||||||
dchanlog = self.Config.SERVICE_CHANLOG
|
|
||||||
|
|
||||||
self.Irc.send2socket(f":{dnickname} PRIVMSG {dchanlog} :{json_response}")
|
|
||||||
pass
|
|
||||||
|
|
||||||
def thread_start_jsonrpc(self):
|
|
||||||
|
|
||||||
liveRpc = Live(path_to_socket_file='/home/adator/IRC/unrealircd6.1.2.1/data/rpc.socket',
|
|
||||||
callback_object_instance=self,
|
|
||||||
callback_method_name='callback_sent_to_irc'
|
|
||||||
)
|
|
||||||
liveRpc.execute_async_method()
|
|
||||||
|
|
||||||
pass
|
|
||||||
|
|
||||||
def __load_module_configuration(self) -> None:
|
|
||||||
"""### Load Module Configuration
|
|
||||||
"""
|
|
||||||
try:
|
|
||||||
# Build the default configuration model (Mandatory)
|
|
||||||
self.ModConfig = self.ModConfModel(param_exemple1='param value 1', param_exemple2=1)
|
|
||||||
|
|
||||||
# Sync the configuration with core configuration (Mandatory)
|
|
||||||
#self.Base.db_sync_core_config(self.module_name, self.ModConfig)
|
|
||||||
|
|
||||||
return None
|
|
||||||
|
|
||||||
except TypeError as te:
|
|
||||||
self.Logs.critical(te)
|
|
||||||
|
|
||||||
def __update_configuration(self, param_key: str, param_value: str):
|
|
||||||
"""Update the local and core configuration
|
|
||||||
|
|
||||||
Args:
|
|
||||||
param_key (str): The parameter key
|
|
||||||
param_value (str): The parameter value
|
|
||||||
"""
|
|
||||||
self.Base.db_update_core_config(self.module_name, self.ModConfig, param_key, param_value)
|
|
||||||
|
|
||||||
def unload(self) -> None:
|
|
||||||
|
|
||||||
return None
|
|
||||||
|
|
||||||
def cmd(self, data:list) -> None:
|
|
||||||
|
|
||||||
return None
|
|
||||||
|
|
||||||
def _hcmds(self, user:str, channel: any, cmd: list, fullcmd: list = []) -> None:
|
|
||||||
|
|
||||||
command = str(cmd[0]).lower()
|
|
||||||
dnickname = self.Config.SERVICE_NICKNAME
|
|
||||||
fromuser = user
|
|
||||||
fromchannel = str(channel) if not channel is None else None
|
|
||||||
|
|
||||||
match command:
|
|
||||||
|
|
||||||
case 'jsonrpc':
|
|
||||||
|
|
||||||
self.Base.create_thread(self.thread_start_jsonrpc, run_once=True)
|
|
||||||
|
|
||||||
pass
|
|
||||||
|
|
||||||
case 'ia':
|
|
||||||
try:
|
|
||||||
|
|
||||||
self.Base.create_thread(self.thread_ask_ia, ('',))
|
|
||||||
|
|
||||||
self.Irc.send2socket(f":{dnickname} NOTICE {fromuser} : This is a notice to the sender ...")
|
|
||||||
self.Irc.send2socket(f":{dnickname} PRIVMSG {fromuser} : This is private message to the sender ...")
|
|
||||||
|
|
||||||
if not fromchannel is None:
|
|
||||||
self.Irc.send2socket(f":{dnickname} PRIVMSG {fromchannel} : This is channel message to the sender ...")
|
|
||||||
|
|
||||||
# How to update your module configuration
|
|
||||||
self.__update_configuration('param_exemple2', 7)
|
|
||||||
|
|
||||||
# Log if you want the result
|
|
||||||
self.Logs.debug(f"Test logs ready")
|
|
||||||
|
|
||||||
except Exception as err:
|
|
||||||
self.Logs.error(f"Unknown Error: {err}")
|
|
||||||
Binary file not shown.
Binary file not shown.
@@ -1,3 +1,3 @@
|
|||||||
{
|
{
|
||||||
"version": "5.1.9"
|
"version": "5.1.8"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user