AIL-framework/bin/modules/Keys.py

180 lines
6.7 KiB
Python
Raw Normal View History

2018-05-04 13:53:29 +02:00
#!/usr/bin/env python3
2016-02-05 16:03:37 +01:00
# -*-coding:UTF-8 -*
2016-02-05 16:03:37 +01:00
"""
The Keys Module
======================
This module is consuming the Redis-list created by the Global module.
2018-04-05 11:40:34 +02:00
It is looking for PGP, private and encrypted private,
RSA private key, certificate messages
2016-02-05 16:03:37 +01:00
"""
2021-04-02 09:52:05 +02:00
##################################
# Import External packages
##################################
import os
import sys
2021-04-02 09:52:05 +02:00
from enum import Enum
2018-04-16 14:50:04 +02:00
sys.path.append(os.environ['AIL_BIN'])
2021-04-02 09:52:05 +02:00
##################################
# Import Project packages
##################################
from modules.abstract_module import AbstractModule
from lib.objects.Items import Item
2016-02-05 16:03:37 +01:00
2021-04-02 09:52:05 +02:00
class KeyEnum(Enum):
PGP_MESSAGE = '-----BEGIN PGP MESSAGE-----'
PGP_PUBLIC_KEY_BLOCK = '-----BEGIN PGP PUBLIC KEY BLOCK-----'
PGP_PRIVATE_KEY_BLOCK = '-----BEGIN PGP PRIVATE KEY BLOCK-----'
PGP_SIGNATURE = '-----BEGIN PGP SIGNATURE-----'
CERTIFICATE = '-----BEGIN CERTIFICATE-----'
PUBLIC_KEY = '-----BEGIN PUBLIC KEY-----'
PRIVATE_KEY = '-----BEGIN PRIVATE KEY-----'
ENCRYPTED_PRIVATE_KEY = '-----BEGIN ENCRYPTED PRIVATE KEY-----'
OPENSSH_PRIVATE_KEY = '-----BEGIN OPENSSH PRIVATE KEY-----'
SSH2_ENCRYPTED_PRIVATE_KEY = '---- BEGIN SSH2 ENCRYPTED PRIVATE KEY ----'
OPENVPN_STATIC_KEY_V1 = '-----BEGIN OpenVPN Static key V1-----'
RSA_PRIVATE_KEY = '-----BEGIN RSA PRIVATE KEY-----'
DSA_PRIVATE_KEY = '-----BEGIN DSA PRIVATE KEY-----'
EC_PRIVATE_KEY = '-----BEGIN EC PRIVATE KEY-----'
class Keys(AbstractModule):
"""
Keys module for AIL framework
"""
2021-05-28 17:23:51 +02:00
2021-04-02 09:52:05 +02:00
def __init__(self):
super(Keys, self).__init__()
# Waiting time in seconds between to message processed
2021-04-02 09:52:05 +02:00
self.pending_seconds = 1
def compute(self, message):
item = self.get_obj()
2021-05-28 17:23:51 +02:00
content = item.get_content()
# find = False
2021-04-02 09:52:05 +02:00
get_pgp_content = False
2018-04-05 11:40:34 +02:00
2021-04-02 09:52:05 +02:00
if KeyEnum.PGP_MESSAGE.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has a PGP enc message')
tag = 'infoleak:automatic-detection="pgp-message"'
self.add_message_to_queue(message=tag, queue='Tags')
2021-04-02 09:52:05 +02:00
get_pgp_content = True
# find = True
2021-04-02 09:52:05 +02:00
if KeyEnum.PGP_PUBLIC_KEY_BLOCK.value in content:
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="pgp-public-key-block"'
self.add_message_to_queue(message=tag, queue='Tags')
2021-04-02 09:52:05 +02:00
get_pgp_content = True
2021-04-02 09:52:05 +02:00
if KeyEnum.PGP_SIGNATURE.value in content:
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="pgp-signature"'
self.add_message_to_queue(message=tag, queue='Tags')
2021-04-02 09:52:05 +02:00
get_pgp_content = True
2018-05-16 14:39:01 +02:00
if KeyEnum.PGP_PRIVATE_KEY_BLOCK.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has a pgp private key block message')
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="pgp-private-key"'
self.add_message_to_queue(message=tag, queue='Tags')
get_pgp_content = True
2021-04-02 09:52:05 +02:00
if KeyEnum.CERTIFICATE.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has a certificate message')
2018-04-05 11:40:34 +02:00
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="certificate"'
self.add_message_to_queue(message=tag, queue='Tags')
# find = True
2018-05-16 14:39:01 +02:00
2021-04-02 09:52:05 +02:00
if KeyEnum.RSA_PRIVATE_KEY.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has a RSA private key message')
2021-04-02 09:52:05 +02:00
print('rsa private key message found')
2018-04-05 11:40:34 +02:00
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="rsa-private-key"'
self.add_message_to_queue(message=tag, queue='Tags')
# find = True
2018-05-16 14:39:01 +02:00
2021-04-02 09:52:05 +02:00
if KeyEnum.PRIVATE_KEY.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has a private key message')
2021-04-02 09:52:05 +02:00
print('private key message found')
2018-04-05 11:40:34 +02:00
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="private-key"'
self.add_message_to_queue(message=tag, queue='Tags')
# find = True
2018-05-16 14:39:01 +02:00
2021-04-02 09:52:05 +02:00
if KeyEnum.ENCRYPTED_PRIVATE_KEY.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has an encrypted private key message')
2021-04-02 09:52:05 +02:00
print('encrypted private key message found')
2018-04-11 10:14:33 +02:00
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="encrypted-private-key"'
self.add_message_to_queue(message=tag, queue='Tags')
# find = True
2018-05-16 14:39:01 +02:00
2021-04-02 09:52:05 +02:00
if KeyEnum.OPENSSH_PRIVATE_KEY.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has an openssh private key message')
2021-04-02 09:52:05 +02:00
print('openssh private key message found')
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="private-ssh-key"'
self.add_message_to_queue(message=tag, queue='Tags')
# find = True
2018-08-01 16:04:06 +02:00
2021-04-02 09:52:05 +02:00
if KeyEnum.SSH2_ENCRYPTED_PRIVATE_KEY.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has an ssh2 private key message')
2021-04-02 09:52:05 +02:00
print('SSH2 private key message found')
2018-08-01 16:04:06 +02:00
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="private-ssh-key"'
self.add_message_to_queue(message=tag, queue='Tags')
# find = True
2018-05-16 14:39:01 +02:00
2021-04-02 09:52:05 +02:00
if KeyEnum.OPENVPN_STATIC_KEY_V1.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has an openssh private key message')
2021-04-02 09:52:05 +02:00
print('OpenVPN Static key message found')
2018-04-11 10:14:33 +02:00
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="vpn-static-key"'
self.add_message_to_queue(message=tag, queue='Tags')
# find = True
2018-05-16 14:39:01 +02:00
2021-04-02 09:52:05 +02:00
if KeyEnum.DSA_PRIVATE_KEY.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has a dsa private key message')
2018-04-11 10:14:33 +02:00
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="dsa-private-key"'
self.add_message_to_queue(message=tag, queue='Tags')
# find = True
2018-05-16 14:39:01 +02:00
2021-04-02 09:52:05 +02:00
if KeyEnum.EC_PRIVATE_KEY.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has an ec private key message')
2018-04-11 10:14:33 +02:00
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="ec-private-key"'
self.add_message_to_queue(message=tag, queue='Tags')
# find = True
2019-10-28 14:37:50 +01:00
2021-04-02 09:52:05 +02:00
if KeyEnum.PUBLIC_KEY.value in content:
2024-03-13 11:58:40 +01:00
self.redis_logger.warning(f'{self.obj.get_global_id()} has a public key message')
2019-10-28 14:37:50 +01:00
2024-01-08 14:24:51 +01:00
tag = 'infoleak:automatic-detection="public-key"'
self.add_message_to_queue(message=tag, queue='Tags')
# find = True
2021-04-02 09:52:05 +02:00
# pgp content
if get_pgp_content:
self.add_message_to_queue(queue='PgpDump')
2018-04-05 11:40:34 +02:00
# if find :
# # Send to duplicate
# self.add_message_to_queue(item.get_id(), 'Duplicate')
2023-05-12 15:29:53 +02:00
# self.logger.debug(f'{item.get_id()} has key(s)')
# print(f'{item.get_id()} has key(s)')
2016-02-05 16:03:37 +01:00
if __name__ == '__main__':
2021-04-02 09:52:05 +02:00
module = Keys()
module.run()