AIL-framework/bin/modules/Keys.py

182 lines
6.6 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
2016-02-05 16:03:37 +01:00
import time
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
2021-05-28 17:23:51 +02:00
from packages.Item 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 secondes between to message proccessed
self.pending_seconds = 1
def compute(self, message):
2021-05-28 17:23:51 +02:00
item = Item(message)
content = item.get_content()
2021-04-02 09:52:05 +02:00
find = False
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:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} has a PGP enc message')
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="pgp-message";{item.get_id()}'
self.send_message_to_queue(msg, '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:
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="pgp-public-key-block";{item.get_id()}'
self.send_message_to_queue(msg, '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:
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="pgp-signature";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
get_pgp_content = True
2018-05-16 14:39:01 +02:00
2021-04-02 09:52:05 +02:00
if KeyEnum.CERTIFICATE.value in content:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} has a certificate message')
2018-04-05 11:40:34 +02:00
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="certificate";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
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:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} 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
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="rsa-private-key";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
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:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} 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
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="private-key";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
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:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} 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
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="encrypted-private-key";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
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:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} has an openssh private key message')
2021-04-02 09:52:05 +02:00
print('openssh private key message found')
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="private-ssh-key";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
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:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} 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
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="private-ssh-key";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
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:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} 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
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="vpn-static-key";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
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:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} has a dsa private key message')
2018-04-11 10:14:33 +02:00
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="dsa-private-key";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
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:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} has an ec private key message')
2018-04-11 10:14:33 +02:00
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="ec-private-key";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
find = True
2018-05-16 14:39:01 +02:00
2021-04-02 09:52:05 +02:00
if KeyEnum.PGP_PRIVATE_KEY_BLOCK.value in content:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} has a pgp private key block message')
2018-04-05 11:40:34 +02:00
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="pgp-private-key";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
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:
2021-05-28 17:23:51 +02:00
self.redis_logger.warning(f'{item.get_basename()} has a public key message')
2019-10-28 14:37:50 +01:00
2021-05-28 17:23:51 +02:00
msg = f'infoleak:automatic-detection="public-key";{item.get_id()}'
self.send_message_to_queue(msg, 'Tags')
2021-04-02 09:52:05 +02:00
find = True
2021-04-02 09:52:05 +02:00
# pgp content
if get_pgp_content:
2021-05-28 17:23:51 +02:00
self.send_message_to_queue(item.get_id(), 'PgpDump')
2018-04-05 11:40:34 +02:00
2021-04-02 09:52:05 +02:00
if find :
#Send to duplicate
2021-05-28 17:23:51 +02:00
self.send_message_to_queue(item.get_id(), 'Duplicate')
self.redis_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-05-28 17:23:51 +02:00
2021-04-02 09:52:05 +02:00
module = Keys()
module.run()