2018-05-04 13:53:29 +02:00
|
|
|
#!/usr/bin/env python3
|
2014-08-06 11:43:40 +02:00
|
|
|
# -*-coding:UTF-8 -*
|
|
|
|
"""
|
|
|
|
The ZMQ_PubSub_Categ Module
|
|
|
|
============================
|
|
|
|
|
2014-08-14 14:11:07 +02:00
|
|
|
This module is consuming the Redis-list created by the ZMQ_PubSub_Tokenize_Q
|
|
|
|
Module.
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
Each words files created under /files/ are representing categories.
|
|
|
|
This modules take these files and compare them to
|
|
|
|
the stream of data given by the ZMQ_PubSub_Tokenize_Q Module.
|
|
|
|
|
|
|
|
When a word from a paste match one or more of these words file, the filename of
|
|
|
|
the paste is published/forwarded to the next modules.
|
|
|
|
|
|
|
|
Each category (each files) are representing a dynamic channel.
|
|
|
|
This mean that if you create 1000 files under /files/ you'll have 1000 channels
|
|
|
|
where every time there is a matching word to a category, the paste containing
|
|
|
|
this word will be pushed to this specific channel.
|
|
|
|
|
|
|
|
..note:: The channel will have the name of the file created.
|
|
|
|
|
|
|
|
Implementing modules can start here, create your own category file,
|
2014-08-14 14:11:07 +02:00
|
|
|
and then create your own module to treat the specific paste matching this
|
|
|
|
category.
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
..note:: Module ZMQ_Something_Q and ZMQ_Something are closely bound, always put
|
|
|
|
the same Subscriber name in both of them.
|
|
|
|
|
|
|
|
Requirements
|
|
|
|
------------
|
|
|
|
|
|
|
|
*Need running Redis instances. (Redis)
|
|
|
|
*Categories files of words in /files/ need to be created
|
|
|
|
*Need the ZMQ_PubSub_Tokenize_Q Module running to be able to work properly.
|
|
|
|
|
|
|
|
"""
|
2014-08-19 19:07:07 +02:00
|
|
|
import os
|
2014-08-14 14:11:07 +02:00
|
|
|
import argparse
|
|
|
|
import time
|
2014-09-05 17:05:45 +02:00
|
|
|
import re
|
2014-08-06 11:43:40 +02:00
|
|
|
from pubsublogger import publisher
|
2014-08-14 14:11:07 +02:00
|
|
|
from packages import Paste
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
from Helper import Process
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-19 19:07:07 +02:00
|
|
|
if __name__ == "__main__":
|
2014-08-22 17:35:40 +02:00
|
|
|
publisher.port = 6380
|
2014-08-19 19:07:07 +02:00
|
|
|
publisher.channel = "Script"
|
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
config_section = 'Categ'
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
p = Process(config_section)
|
2017-12-11 17:28:34 +01:00
|
|
|
matchingThreshold = p.config.getint("Categ", "matchingThreshold")
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
# SCRIPT PARSER #
|
2016-02-10 16:39:56 +01:00
|
|
|
parser = argparse.ArgumentParser(description='Start Categ module on files.')
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-14 14:11:07 +02:00
|
|
|
parser.add_argument(
|
2014-08-19 19:07:07 +02:00
|
|
|
'-d', type=str, default="../files/",
|
|
|
|
help='Path to the directory containing the category files.',
|
2014-08-14 14:11:07 +02:00
|
|
|
action='store')
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
# FUNCTIONS #
|
2014-08-29 19:37:56 +02:00
|
|
|
publisher.info("Script Categ started")
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2018-04-26 14:42:39 +02:00
|
|
|
categories = ['CreditCards', 'Mail', 'Onion', 'Web', 'Credential', 'Cve', 'ApiKey']
|
2014-08-19 19:07:07 +02:00
|
|
|
tmp_dict = {}
|
2014-08-29 19:37:56 +02:00
|
|
|
for filename in categories:
|
2014-08-19 19:07:07 +02:00
|
|
|
bname = os.path.basename(filename)
|
|
|
|
tmp_dict[bname] = []
|
2014-08-22 17:35:40 +02:00
|
|
|
with open(os.path.join(args.d, filename), 'r') as f:
|
2018-04-16 14:50:04 +02:00
|
|
|
patterns = [r'%s' % ( re.escape(s.strip()) ) for s in f]
|
2014-09-05 17:05:45 +02:00
|
|
|
tmp_dict[bname] = re.compile('|'.join(patterns), re.IGNORECASE)
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
prec_filename = None
|
|
|
|
|
|
|
|
while True:
|
2014-09-05 17:05:45 +02:00
|
|
|
filename = p.get_from_set()
|
2016-02-10 16:39:56 +01:00
|
|
|
if filename is None:
|
2014-08-06 11:43:40 +02:00
|
|
|
publisher.debug("Script Categ is Idling 10s")
|
2018-04-16 14:50:04 +02:00
|
|
|
print('Sleeping')
|
2014-08-06 11:43:40 +02:00
|
|
|
time.sleep(10)
|
2016-02-10 16:39:56 +01:00
|
|
|
continue
|
|
|
|
|
|
|
|
paste = Paste.Paste(filename)
|
|
|
|
content = paste.get_p_content()
|
|
|
|
|
2018-04-20 10:42:19 +02:00
|
|
|
#print('-----------------------------------------------------')
|
|
|
|
#print(filename)
|
|
|
|
#print(content)
|
|
|
|
#print('-----------------------------------------------------')
|
2018-04-16 14:50:04 +02:00
|
|
|
|
2016-02-10 16:39:56 +01:00
|
|
|
for categ, pattern in tmp_dict.items():
|
|
|
|
found = set(re.findall(pattern, content))
|
2017-12-11 17:28:34 +01:00
|
|
|
if len(found) >= matchingThreshold:
|
2016-02-10 16:39:56 +01:00
|
|
|
msg = '{} {}'.format(paste.p_path, len(found))
|
2018-04-16 14:50:04 +02:00
|
|
|
#msg = " ".join( [paste.p_path, bytes(len(found))] )
|
|
|
|
|
|
|
|
print(msg, categ)
|
2016-02-10 16:39:56 +01:00
|
|
|
p.populate_set_out(msg, categ)
|
|
|
|
|
|
|
|
publisher.info(
|
2017-02-14 10:59:47 +01:00
|
|
|
'Categ;{};{};{};Detected {} as {};{}'.format(
|
2016-02-10 16:39:56 +01:00
|
|
|
paste.p_source, paste.p_date, paste.p_name,
|
2017-02-28 09:14:18 +01:00
|
|
|
len(found), categ, paste.p_path))
|