mirror of https://github.com/CIRCL/AIL-framework
chg: [ApiKey] refactor module + tests
parent
4896db98a3
commit
4a9bda2ee8
129
bin/ApiKey.py
129
bin/ApiKey.py
|
@ -7,85 +7,84 @@ The ApiKey Module
|
||||||
|
|
||||||
This module is consuming the Redis-list created by the Categ module.
|
This module is consuming the Redis-list created by the Categ module.
|
||||||
|
|
||||||
It apply API_key regexes on paste content and warn if above a threshold.
|
Search for API keys on an item content.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import redis
|
|
||||||
import pprint
|
|
||||||
import time
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from packages import Paste
|
# project packages
|
||||||
from packages import lib_refine
|
from module.abstract_module import AbstractModule
|
||||||
from pubsublogger import publisher
|
from packages.Item import Item
|
||||||
|
from lib import regex_helper
|
||||||
|
|
||||||
from Helper import Process
|
class ApiKey(AbstractModule):
|
||||||
|
"""ApiKey module for AIL framework"""
|
||||||
|
|
||||||
|
def __init__(self):
|
||||||
|
super(ApiKey, self).__init__()
|
||||||
|
|
||||||
def search_api_key(message):
|
self.redis_cache_key = regex_helper.generate_redis_cache_key(self.module_name)
|
||||||
filename, score = message.split()
|
|
||||||
paste = Paste.Paste(filename)
|
|
||||||
content = paste.get_p_content()
|
|
||||||
|
|
||||||
aws_access_key = regex_aws_access_key.findall(content)
|
# # TODO: ENUM or dict
|
||||||
aws_secret_key = regex_aws_secret_key.findall(content)
|
|
||||||
google_api_key = regex_google_api_key.findall(content)
|
|
||||||
|
|
||||||
if(len(aws_access_key) > 0 or len(aws_secret_key) > 0 or len(google_api_key) > 0):
|
|
||||||
|
|
||||||
to_print = 'ApiKey;{};{};{};'.format(
|
|
||||||
paste.p_source, paste.p_date, paste.p_name)
|
|
||||||
if(len(google_api_key) > 0):
|
|
||||||
print('found google api key')
|
|
||||||
print(to_print)
|
|
||||||
publisher.warning('{}Checked {} found Google API Key;{}'.format(
|
|
||||||
to_print, len(google_api_key), paste.p_rel_path))
|
|
||||||
msg = 'infoleak:automatic-detection="google-api-key";{}'.format(filename)
|
|
||||||
p.populate_set_out(msg, 'Tags')
|
|
||||||
|
|
||||||
if(len(aws_access_key) > 0 or len(aws_secret_key) > 0):
|
|
||||||
print('found AWS key')
|
|
||||||
print(to_print)
|
|
||||||
total = len(aws_access_key) + len(aws_secret_key)
|
|
||||||
publisher.warning('{}Checked {} found AWS Key;{}'.format(
|
|
||||||
to_print, total, paste.p_rel_path))
|
|
||||||
msg = 'infoleak:automatic-detection="aws-key";{}'.format(filename)
|
|
||||||
p.populate_set_out(msg, 'Tags')
|
|
||||||
|
|
||||||
|
|
||||||
msg = 'infoleak:automatic-detection="api-key";{}'.format(filename)
|
|
||||||
p.populate_set_out(msg, 'Tags')
|
|
||||||
|
|
||||||
#Send to duplicate
|
|
||||||
p.populate_set_out(filename, 'Duplicate')
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
|
||||||
publisher.port = 6380
|
|
||||||
publisher.channel = "Script"
|
|
||||||
|
|
||||||
config_section = 'ApiKey'
|
|
||||||
|
|
||||||
p = Process(config_section)
|
|
||||||
|
|
||||||
publisher.info("ApiKey started")
|
|
||||||
|
|
||||||
message = p.get_from_set()
|
|
||||||
|
|
||||||
# TODO improve REGEX
|
# TODO improve REGEX
|
||||||
regex_aws_access_key = re.compile(r'(?<![A-Z0-9])=[A-Z0-9]{20}(?![A-Z0-9])')
|
#r'(?<![A-Z0-9])=[A-Z0-9]{20}(?![A-Z0-9])'
|
||||||
regex_aws_secret_key = re.compile(r'(?<!=[A-Za-z0-9+])=[A-Za-z0-9+]{40}(?![A-Za-z0-9+])')
|
#r'(?<!=[A-Za-z0-9+])=[A-Za-z0-9+]{40}(?![A-Za-z0-9+])'
|
||||||
|
self.re_aws_access_key = r'AKIA[0-9A-Z]{16}'
|
||||||
|
self.re_aws_secret_key = r'[0-9a-zA-Z/+]{40}'
|
||||||
|
re.compile(self.re_aws_access_key)
|
||||||
|
re.compile(self.re_aws_secret_key)
|
||||||
|
|
||||||
regex_google_api_key = re.compile(r'=AIza[0-9a-zA-Z-_]{35}')
|
# r'=AIza[0-9a-zA-Z-_]{35}' keep equal ????
|
||||||
|
self.re_google_api_key = r'AIza[0-9a-zA-Z-_]{35}'
|
||||||
|
re.compile(self.re_google_api_key)
|
||||||
|
|
||||||
while True:
|
# Send module state to logs
|
||||||
|
self.redis_logger.info(f"Module {self.module_name} initialized")
|
||||||
|
|
||||||
message = p.get_from_set()
|
def compute(self, message, r_match=False):
|
||||||
|
id, score = message.split()
|
||||||
|
item = Item(id)
|
||||||
|
item_content = item.get_content()
|
||||||
|
|
||||||
if message is not None:
|
google_api_key = regex_helper.regex_findall(self.module_name, self.redis_cache_key, self.re_google_api_key, item.get_id(), item_content)
|
||||||
|
|
||||||
search_api_key(message)
|
aws_access_key = regex_helper.regex_findall(self.module_name, self.redis_cache_key, self.re_aws_access_key, item.get_id(), item_content)
|
||||||
|
if aws_access_key:
|
||||||
|
aws_secret_key = regex_helper.regex_findall(self.module_name, self.redis_cache_key, self.re_aws_secret_key, item.get_id(), item_content)
|
||||||
|
|
||||||
else:
|
if aws_access_key or google_api_key:
|
||||||
publisher.debug("Script ApiKey is Idling 10s")
|
to_print = f'ApiKey;{item.get_source()};{item.get_date()};{item.get_basename()};'
|
||||||
time.sleep(10)
|
|
||||||
|
if google_api_key:
|
||||||
|
print(f'found google api key: {to_print}')
|
||||||
|
self.redis_logger.warning(f'{to_print}Checked {len(google_api_key)} found Google API Key;{item.get_id()}')
|
||||||
|
|
||||||
|
msg = f'infoleak:automatic-detection="google-api-key";{item.get_id()}'
|
||||||
|
self.send_message_to_queue('Tags', msg)
|
||||||
|
|
||||||
|
# # TODO: # FIXME: AWS regex/validate/sanityze KEY + SECRET KEY
|
||||||
|
if aws_access_key:
|
||||||
|
print(f'found AWS key: {to_print}')
|
||||||
|
self.redis_logger.warning(f'{to_print}Checked {len(aws_access_key)} found AWS Key;{item.get_id()}')
|
||||||
|
if aws_secret_key:
|
||||||
|
print(f'found AWS secret key')
|
||||||
|
self.redis_logger.warning(f'{to_print}Checked {len(aws_secret_key)} found AWS secret Key;{item.get_id()}')
|
||||||
|
|
||||||
|
msg = 'infoleak:automatic-detection="aws-key";{}'.format(item.get_id())
|
||||||
|
self.send_message_to_queue('Tags', msg)
|
||||||
|
|
||||||
|
# Tags
|
||||||
|
msg = f'infoleak:automatic-detection="api-key";{item.get_id()}'
|
||||||
|
self.send_message_to_queue('Tags', msg)
|
||||||
|
|
||||||
|
# Send to duplicate
|
||||||
|
self.send_message_to_queue('Duplicate', item.get_id())
|
||||||
|
|
||||||
|
if r_match:
|
||||||
|
return (google_api_key, aws_access_key, aws_secret_key)
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
module = ApiKey()
|
||||||
|
module.run()
|
||||||
|
|
15
bin/Onion.py
15
bin/Onion.py
|
@ -1,24 +1,16 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# -*-coding:UTF-8 -*
|
# -*-coding:UTF-8 -*
|
||||||
"""
|
"""
|
||||||
The ZMQ_Sub_Onion Module
|
The Onion Module
|
||||||
============================
|
============================
|
||||||
|
|
||||||
This module is consuming the Redis-list created by the ZMQ_Sub_Onion_Q Module.
|
This module extract url from item and returning only ones which are tor
|
||||||
|
related (.onion). All These urls are send to the crawler discovery queue.
|
||||||
It trying to extract url from paste and returning only ones which are tor
|
|
||||||
related (.onion)
|
|
||||||
|
|
||||||
..seealso:: Paste method (get_regex)
|
|
||||||
|
|
||||||
..note:: Module ZMQ_Something_Q and ZMQ_Something are closely bound, always put
|
|
||||||
the same Subscriber name in both of them.
|
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
------------
|
------------
|
||||||
|
|
||||||
*Need running Redis instances. (Redis)
|
*Need running Redis instances. (Redis)
|
||||||
*Need the ZMQ_Sub_Onion_Q Module running to be able to work properly.
|
|
||||||
|
|
||||||
"""
|
"""
|
||||||
import time
|
import time
|
||||||
|
@ -27,6 +19,7 @@ import os
|
||||||
import sys
|
import sys
|
||||||
import re
|
import re
|
||||||
|
|
||||||
|
# project packages
|
||||||
from module.abstract_module import AbstractModule
|
from module.abstract_module import AbstractModule
|
||||||
from lib.ConfigLoader import ConfigLoader
|
from lib.ConfigLoader import ConfigLoader
|
||||||
from lib import crawlers
|
from lib import crawlers
|
||||||
|
|
|
@ -8,11 +8,28 @@ import unittest
|
||||||
sys.path.append(os.environ['AIL_BIN'])
|
sys.path.append(os.environ['AIL_BIN'])
|
||||||
|
|
||||||
# Modules Classes
|
# Modules Classes
|
||||||
|
from ApiKey import ApiKey
|
||||||
from Onion import Onion
|
from Onion import Onion
|
||||||
|
|
||||||
# projects packages
|
# project packages
|
||||||
import lib.crawlers as crawlers
|
import lib.crawlers as crawlers
|
||||||
|
|
||||||
|
class Test_Module_ApiKey(unittest.TestCase):
|
||||||
|
|
||||||
|
def setUp(self):
|
||||||
|
self.module_obj = ApiKey()
|
||||||
|
|
||||||
|
def test_module(self):
|
||||||
|
item_id = 'tests/2021/01/01/api_keys.gz'
|
||||||
|
google_api_key = 'AIza00000000000000000000000_example-KEY'
|
||||||
|
aws_access_key = 'AKIAIOSFODNN7EXAMPLE'
|
||||||
|
aws_secret_key = 'wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY'
|
||||||
|
|
||||||
|
matches = self.module_obj.compute(f'{item_id} 3', r_match=True)
|
||||||
|
self.assertCountEqual(matches[0], [google_api_key])
|
||||||
|
self.assertCountEqual(matches[1], [aws_access_key])
|
||||||
|
self.assertCountEqual(matches[2], [aws_secret_key])
|
||||||
|
|
||||||
class Test_Module_Onion(unittest.TestCase):
|
class Test_Module_Onion(unittest.TestCase):
|
||||||
|
|
||||||
def setUp(self):
|
def setUp(self):
|
||||||
|
@ -41,3 +58,6 @@ class Test_Module_Onion(unittest.TestCase):
|
||||||
else:
|
else:
|
||||||
# # TODO: check warning logs
|
# # TODO: check warning logs
|
||||||
pass
|
pass
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
unittest.main()
|
||||||
|
|
Loading…
Reference in New Issue