Ejemplo n.º 1
0
 def __init__(self):
     self.scans_table = ScansTable()
     self.events_deque = collections.deque()
     self.deque_read_interval = 15
     self.scan_threshold = 300
     #self.scan_threshold = 60
     self.cymru_min_timeout = 2
     self.cymru_timeout = 3
     #self.profile_update_time = datetime.now() + timedelta(hours=24)
     self.profile_update_time = datetime.now() + timedelta(minutes=30)
     #self.loggers = logging_handler.get_loggers()
     thread.start_new_thread(self.run, ())
Ejemplo n.º 2
0
 def __init__(self, maindb):
     self.maindb = maindb
     self.scans_table = ScansTable()
     self.events_deque = collections.deque()
     # Max interval(sec) between two requests that are part of the same scan
     self.scan_threshold = 30
     # The database will be updated this frequently
     self.profile_update_time = datetime.now() + timedelta(minutes=2)
     self.deque_read_interval = 15
     self.cymru_min_timeout = 2
     self.cymru_timeout = 3
     #self.loggers = logging_handler.get_loggers()
     thread.start_new_thread(self.run, ())
Ejemplo n.º 3
0
class Profiler(object):
    def __init__(self, maindb):
        self.maindb = maindb
        self.scans_table = ScansTable()
        self.events_deque = collections.deque()
        # Max interval(sec) between two requests that are part of the same scan
        self.scan_threshold = 30
        # The database will be updated this frequently
        self.profile_update_time = datetime.now() + timedelta(minutes=2)
        self.deque_read_interval = 15
        self.cymru_min_timeout = 2
        self.cymru_timeout = 3
        #self.loggers = logging_handler.get_loggers()
        thread.start_new_thread(self.run, ())

    # Reverse the IP address for querying origin.asn.cymru.com
    def reverse_ip(self, ip):
        ipreg = re.compile("([0-9]{1,3})\.([0-9]{1,3})\.([0-9]{1,3})"
                                    "\.([0-9]{1,3})$")
        m = ipreg.match(ip)
        if m is not None:
            return (m.group(4) + "." + m.group(3) + "." + m.group(2) +
                    "." + m.group(1))
        else:
            return ""

    def handle_event(self, event):
        self.events_deque.appendleft(event)

    @staticmethod
    def add_comment(ip_address, comment):
        #=======================================================================
        # loggers = logging_handler.get_loggers(create_tables=False)
        # supported_loggers = []
        # for logger in loggers:
        #    if logger.__class__.__name__ in ('Database',):
        #        supported_loggers.append(logger)
        # for logger in supported_loggers:
        #    logger.add_comment(ip_address, comment)
        #=======================================================================
        pass

    @staticmethod
    def get_comments(ip_address):
        #loggers = logging_handler.get_loggers(create_tables=False)
        #supported_loggers = []
        #for logger in loggers:
        #    if logger.__class__.__name__ in ('LogPostgreSQL',):
        #        supported_loggers.append(logger)
        #if len(supported_loggers) > 0:
        #    return supported_loggers[0].get_comments(ip_address)
        #else:
        #    return ''
        return ''

    def update_scan(self, event):
        source_ip = event.source_addr[0].split(',')[0]
        if source_ip is None:
            return
        scan = self.scans_table.get_current_scan(source_ip)
        event_time = datetime.strptime(event.event_time, "%Y-%m-%d %H:%M:%S")
        if scan is None:
            scan = Scan(source_ip, start_time=event_time)
            self.scans_table.insert_scan(scan)
            return

        time_diff = (scan.last_event_time - event_time).total_seconds()
        if time_diff > self.scan_threshold:
            self.scans_table.close_scan(source_ip)
            scan = Scan(source_ip, start_time=event_time)
            self.scans_table.insert_scan(scan)
        else:
            scan.requests += 1
            scan.last_event_time = event_time

    def fetch_as_number(self, ip_profile):
        cmd = subprocess.Popen(
                    ['dig', '+short', self.reverse_ip(ip_profile.ip) +
                    '.origin.asn.cymru.com', 'TXT'], stdout=subprocess.PIPE)
        time.sleep(self.cymru_min_timeout)
        if cmd.poll() is None:
            time.sleep(self.cymru_timeout)
            if cmd.poll() is None:
                try:
                    cmd.kill()
                except:
                    pass
                else:
                    return False
        as_info = cmd.stdout.readline()
        as_info = as_info.strip().strip('"').split('|')
        try:
            # .split()[0] is added to deal with multiple ASNs
            as_info = [word.strip().split()[0] for word in as_info]
            ip_profile.as_number = as_info[0]
            ip_profile.bgp_prefix = as_info[1]
            ip_profile.country_code = as_info[2]
        except IndexError:
            return False
        else:
            return True

    def fetch_as_name(self, ip_profile):
        cmd = subprocess.Popen(
                    ['dig', '+short', ('AS' + ip_profile.as_number +
                     '.asn.cymru.com'), 'TXT'], stdout=subprocess.PIPE)
        as_info = cmd.stdout.readline()
        time.sleep(self.cymru_min_timeout)
        if cmd.poll() is None:
            time.sleep(self.cymru_timeout)
            if cmd.poll() is None:
                try:
                    cmd.kill()
                except:
                    pass
                else:
                    return
#        as_name_info = cmd.stdout.readline()
        as_name_info = as_info.strip().strip('"').split('|')
        try:
            ip_profile.as_name = as_name_info[4].strip()
        except IndexError:
            pass

    def create_new_profile(self, source_ip):
        ip_profile = ipp.IPProfile(ip=source_ip)
        if self.fetch_as_number(ip_profile):
            self.fetch_as_name(ip_profile)
        return ip_profile

    def update_profile_with_scan(self, profile, scan):
        profile.total_requests += scan.requests
        profile.total_scans += 1
        profile.requests_per_scan = (profile.total_requests * 1.0 /
                                     profile.total_scans)
        profile.avg_scan_duration = (
                ((profile.avg_scan_duration * (profile.total_scans - 1)) +
                 (scan.last_event_time - scan.start_time).total_seconds()) /
                (profile.total_scans))
        if profile.total_scans > 1:
            prof_last_ev_time = datetime.strptime(profile.last_event_time,
                                              "%Y-%m-%d %H:%M:%S")
            profile.scan_time_period = (
                ((profile.scan_time_period * (profile.total_scans - 2)) +
                (scan.start_time - prof_last_ev_time).total_seconds()) /
                (profile.total_scans - 1))
        profile.last_event_time = scan.last_event_time.strftime("%Y-%m-%d %H:%M:%S")

    def update_profile_with_current_scan(self, profile, scan):
        profile.total_requests += (scan.requests - scan.requests_posted)
        scan.requests_posted = scan.requests

    def update_profiles(self):
        self.scans_table.close_old_scans(self.scan_threshold)
        for source_ip in self.scans_table.scans:
            ip_profile = self.maindb.get_profile(source_ip)
            if ip_profile is None:
                ip_profile = self.create_new_profile(source_ip)
                self.maindb.insert_profile(ip_profile)
            for scan in self.scans_table.scans[source_ip]['closed']:
                self.update_profile_with_scan(ip_profile, scan)
            if 'current' in self.scans_table.scans[source_ip]:
                scan = self.scans_table.scans[source_ip]['current']
                self.update_profile_with_current_scan(ip_profile, scan)
            self.maindb.update_db()
        self.scans_table.delete_closed_scans()

    def run(self):
        while True:
            if len(self.events_deque) == 0:
                if datetime.now() > self.profile_update_time:
                    self.update_profiles()
                    #self.profile_update_time += timedelta(hours=24)
                    self.profile_update_time += timedelta(seconds=30)
                time.sleep(self.deque_read_interval)
                continue
            self.update_scan(self.events_deque.pop())