2022-09-19 07:50:46 +00:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
|
|
|
|
"""
|
|
|
|
The Iban Module
|
|
|
|
================================
|
|
|
|
|
|
|
|
This module add tags to an item.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
##################################
|
|
|
|
# Import External packages
|
|
|
|
##################################
|
|
|
|
import datetime
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import string
|
|
|
|
import sys
|
|
|
|
from itertools import chain
|
|
|
|
|
|
|
|
sys.path.append(os.environ['AIL_BIN'])
|
|
|
|
##################################
|
|
|
|
# Import Project packages
|
|
|
|
##################################
|
|
|
|
from modules.abstract_module import AbstractModule
|
|
|
|
from lib.objects.Items import Item
|
|
|
|
from lib.ConfigLoader import ConfigLoader
|
2023-03-30 13:23:41 +00:00
|
|
|
# from lib import Statistics
|
2022-09-19 07:50:46 +00:00
|
|
|
|
|
|
|
class Iban(AbstractModule):
|
|
|
|
"""
|
|
|
|
Iban module for AIL framework
|
|
|
|
"""
|
|
|
|
|
|
|
|
_LETTERS_IBAN = chain(enumerate(string.digits + string.ascii_uppercase),
|
2022-10-25 14:25:19 +00:00
|
|
|
enumerate(string.ascii_lowercase, 10))
|
2022-09-19 07:50:46 +00:00
|
|
|
LETTERS_IBAN = {ord(d): str(i) for i, d in _LETTERS_IBAN}
|
|
|
|
|
2023-04-13 12:25:02 +00:00
|
|
|
def __init__(self, queue=True):
|
|
|
|
super(Iban, self).__init__(queue=queue)
|
2022-09-19 07:50:46 +00:00
|
|
|
|
|
|
|
# Waiting time in secondes between to message proccessed
|
|
|
|
self.pending_seconds = 10
|
|
|
|
|
|
|
|
self.regex_timeout = 30
|
2022-10-25 14:25:19 +00:00
|
|
|
# iban_regex = re.compile(r'\b[A-Za-z]{2}[0-9]{2}(?:[ ]?[0-9]{4}){4}(?:[ ]?[0-9]{1,2})?\b')
|
2022-09-19 07:50:46 +00:00
|
|
|
self.iban_regex = re.compile(r'\b([A-Za-z]{2}[ \-]?[0-9]{2})(?=(?:[ \-]?[A-Za-z0-9]){9,30})((?:[ \-]?[A-Za-z0-9]{3,5}){2,6})([ \-]?[A-Za-z0-9]{1,3})\b')
|
|
|
|
self.iban_regex_verify = re.compile(r'^([A-Z]{2})([0-9]{2})([A-Z0-9]{9,30})$')
|
|
|
|
|
|
|
|
# Send module state to logs
|
|
|
|
self.redis_logger.info(f'Module {self.module_name} initialized')
|
|
|
|
|
|
|
|
def get_iban_number(self, iban):
|
|
|
|
return (iban[4:] + iban[:4]).translate(Iban.LETTERS_IBAN)
|
|
|
|
|
|
|
|
def is_valid_iban(self, iban):
|
|
|
|
iban_numb = self.get_iban_number(iban)
|
|
|
|
iban_numb_check = self.get_iban_number(iban[:2] + '00' + iban[4:])
|
|
|
|
check_digit = '{:0>2}'.format(98 - (int(iban_numb_check) % 97))
|
|
|
|
if check_digit == iban[2:4] and int(iban_numb) % 97 == 1:
|
|
|
|
return True
|
|
|
|
return False
|
|
|
|
|
2022-12-19 15:38:20 +00:00
|
|
|
def extract(self, obj_id, content, tag):
|
|
|
|
extracted = []
|
|
|
|
ibans = self.regex_finditer(self.iban_regex, obj_id, content)
|
|
|
|
for iban in ibans:
|
|
|
|
start, end, value = iban
|
|
|
|
value = ''.join(e for e in value if e.isalnum())
|
|
|
|
if self.is_valid_iban(value):
|
2023-02-23 15:25:15 +00:00
|
|
|
extracted.append([start, end, value, f'tag:{tag}'])
|
2022-12-19 15:38:20 +00:00
|
|
|
return extracted
|
|
|
|
|
2022-09-19 07:50:46 +00:00
|
|
|
def compute(self, message):
|
2023-06-22 13:38:04 +00:00
|
|
|
item = self.get_obj()
|
2022-09-19 07:50:46 +00:00
|
|
|
item_id = item.get_id()
|
|
|
|
|
|
|
|
ibans = self.regex_findall(self.iban_regex, item_id, item.get_content())
|
|
|
|
if ibans:
|
|
|
|
valid_ibans = set()
|
|
|
|
for iban in ibans:
|
|
|
|
iban = iban[1:-1].replace("'", "").split(',')
|
|
|
|
iban = iban[0]+iban[1]+iban[2]
|
|
|
|
iban = ''.join(e for e in iban if e.isalnum())
|
|
|
|
if self.regex_findall(self.iban_regex_verify, item_id, iban):
|
|
|
|
print(f'checking {iban}')
|
|
|
|
if self.is_valid_iban(iban):
|
|
|
|
valid_ibans.add(iban)
|
|
|
|
|
|
|
|
if valid_ibans:
|
|
|
|
print(f'{valid_ibans} ibans {item_id}')
|
|
|
|
date = datetime.datetime.now().strftime("%Y%m")
|
2023-03-30 13:23:41 +00:00
|
|
|
# for iban in valid_ibans:
|
|
|
|
# Statistics.add_module_tld_stats_by_date('iban', date, iban[0:2], 1)
|
2022-09-19 07:50:46 +00:00
|
|
|
|
|
|
|
to_print = f'Iban;{item.get_source()};{item.get_date()};{item.get_basename()};'
|
2024-03-13 10:58:40 +00:00
|
|
|
self.redis_logger.warning(f'{to_print}Checked found {len(valid_ibans)} IBAN;{self.obj.get_global_id()}')
|
2022-09-19 07:50:46 +00:00
|
|
|
# Tags
|
2023-06-22 13:38:04 +00:00
|
|
|
tag = 'infoleak:automatic-detection="iban"'
|
|
|
|
self.add_message_to_queue(message=tag, queue='Tags')
|
2022-09-19 07:50:46 +00:00
|
|
|
|
2022-10-25 14:25:19 +00:00
|
|
|
|
2022-09-19 07:50:46 +00:00
|
|
|
if __name__ == '__main__':
|
|
|
|
|
|
|
|
module = Iban()
|
|
|
|
module.run()
|