AIL-framework/bin/Onion.py

92 lines
3.0 KiB
Python
Raw Normal View History

#!/usr/bin/env python2
# -*-coding:UTF-8 -*
"""
The ZMQ_Sub_Onion Module
============================
This module is consuming the Redis-list created by the ZMQ_Sub_Onion_Q Module.
2014-08-20 15:14:57 +02:00
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
------------
*Need running Redis instances. (Redis)
*Need the ZMQ_Sub_Onion_Q Module running to be able to work properly.
"""
2014-08-14 17:55:18 +02:00
import pprint
import time
from packages import Paste
from pubsublogger import publisher
from Helper import Process
2014-08-14 17:55:18 +02:00
2014-08-20 15:14:57 +02:00
if __name__ == "__main__":
publisher.port = 6380
2014-08-20 15:14:57 +02:00
publisher.channel = "Script"
config_section = 'Onion'
p = Process(config_section)
# FUNCTIONS #
publisher.info("Script subscribed to channel onion_categ")
# FIXME For retro compatibility
channel = 'onion_categ'
2014-08-14 17:55:18 +02:00
# Getting the first message from redis.
message = p.get_from_set()
prec_filename = None
2014-08-14 17:55:18 +02:00
# Thanks to Faup project for this regex
# https://github.com/stricaud/faup
url_regex = "([a-zA-Z0-9\.\-]+(\:[a-zA-Z0-9\.&%\$\-]+)*@)*((25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9])\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[1-9]|0)\.(25[0-5]|2[0-4][0-9]|[0-1]{1}[0-9]{2}|[1-9]{1}[0-9]{1}|[0-9])|localhost|([a-zA-Z0-9\-]+\.)*[a-zA-Z0-9\-]+\.onion)(\:[0-9]+)*(/($|[a-zA-Z0-9\.\,\?\'\\\+&%\$#\=~_\-]+))*"
while True:
2014-08-14 17:55:18 +02:00
if message is not None:
print message
filename, word, score = message.split()
# "For each new paste"
2014-08-14 17:55:18 +02:00
if prec_filename is None or filename != prec_filename:
domains_list = []
2014-08-14 17:55:18 +02:00
PST = Paste.Paste(filename)
for x in PST.get_regex(url_regex):
2014-08-14 17:55:18 +02:00
# Extracting url with regex
2014-08-20 15:14:57 +02:00
credential, subdomain, domain, host, tld, port, \
resource_path, query_string, f1, f2, f3, f4 = x
domains_list.append(domain)
2014-08-14 17:55:18 +02:00
# Saving the list of extracted onion domains.
PST.__setattr__(channel, domains_list)
2014-08-21 12:22:07 +02:00
PST.save_attribute_redis(channel, domains_list)
pprint.pprint(domains_list)
print PST.p_path
2014-08-20 15:14:57 +02:00
to_print = 'Onion;{};{};{};'.format(PST.p_source, PST.p_date,
PST.p_name)
if len(domains_list) > 0:
2014-08-20 15:14:57 +02:00
publisher.warning('{}Detected {} .onion(s)'.format(
to_print, len(domains_list)))
else:
2014-08-14 17:55:18 +02:00
publisher.info('{}Onion related'.format(to_print))
prec_filename = filename
else:
publisher.debug("Script url is Idling 10s")
print 'Sleeping'
time.sleep(10)
message = p.get_from_set()