2016-02-04 15:22:51 +01:00
|
|
|
#!/usr/bin/env python
|
2014-08-06 11:43:40 +02:00
|
|
|
# -*-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)
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
..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
|
2014-08-06 11:43:40 +02:00
|
|
|
from pubsublogger import publisher
|
2014-08-31 22:42:12 +02:00
|
|
|
import datetime
|
|
|
|
import os
|
|
|
|
import base64
|
|
|
|
import subprocess
|
2014-09-01 16:18:06 +02:00
|
|
|
import redis
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
from Helper import Process
|
2014-08-14 17:55:18 +02:00
|
|
|
|
2014-08-31 22:42:12 +02:00
|
|
|
|
2014-09-01 16:18:06 +02:00
|
|
|
def fetch(p, r_cache, urls, domains, path):
|
2014-09-02 15:21:36 +02:00
|
|
|
failed = []
|
2014-09-08 16:51:43 +02:00
|
|
|
downloaded = []
|
|
|
|
print len(urls), 'Urls to fetch.'
|
2014-08-31 22:42:12 +02:00
|
|
|
for url, domain in zip(urls, domains):
|
2014-09-02 15:21:36 +02:00
|
|
|
if r_cache.exists(url) or url in failed:
|
2014-09-01 16:18:06 +02:00
|
|
|
continue
|
2014-08-31 22:42:12 +02:00
|
|
|
to_fetch = base64.standard_b64encode(url)
|
|
|
|
process = subprocess.Popen(["python", './tor_fetcher.py', to_fetch],
|
|
|
|
stdout=subprocess.PIPE)
|
|
|
|
while process.poll() is None:
|
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
if process.returncode == 0:
|
2014-09-01 16:18:06 +02:00
|
|
|
r_cache.setbit(url, 0, 1)
|
2014-09-08 16:51:43 +02:00
|
|
|
r_cache.expire(url, 360000)
|
|
|
|
downloaded.append(url)
|
2014-08-31 22:42:12 +02:00
|
|
|
tempfile = process.stdout.read().strip()
|
|
|
|
with open(tempfile, 'r') as f:
|
2014-09-08 16:51:43 +02:00
|
|
|
filename = path + domain + '.gz'
|
2014-09-30 16:55:16 +02:00
|
|
|
fetched = f.read()
|
|
|
|
content = base64.standard_b64decode(fetched)
|
2014-08-31 22:42:12 +02:00
|
|
|
save_path = os.path.join(os.environ['AIL_HOME'],
|
|
|
|
p.config.get("Directories", "pastes"),
|
|
|
|
filename)
|
|
|
|
dirname = os.path.dirname(save_path)
|
|
|
|
if not os.path.exists(dirname):
|
|
|
|
os.makedirs(dirname)
|
|
|
|
with open(save_path, 'w') as ff:
|
|
|
|
ff.write(content)
|
2014-09-01 16:18:06 +02:00
|
|
|
p.populate_set_out(save_path, 'Global')
|
|
|
|
p.populate_set_out(url, 'ValidOnion')
|
2014-09-30 16:55:16 +02:00
|
|
|
p.populate_set_out(fetched, 'FetchedOnion')
|
2014-09-01 16:18:06 +02:00
|
|
|
yield url
|
2014-08-31 22:42:12 +02:00
|
|
|
os.unlink(tempfile)
|
|
|
|
else:
|
2014-09-08 16:51:43 +02:00
|
|
|
r_cache.setbit(url, 0, 0)
|
|
|
|
r_cache.expire(url, 3600)
|
2014-09-02 15:21:36 +02:00
|
|
|
failed.append(url)
|
2014-08-31 22:42:12 +02:00
|
|
|
print 'Failed at downloading', url
|
|
|
|
print process.stdout.read()
|
2014-09-08 16:51:43 +02:00
|
|
|
print 'Failed:', len(failed), 'Downloaded:', len(downloaded)
|
2014-08-31 22:42:12 +02:00
|
|
|
|
|
|
|
|
2014-08-20 15:14:57 +02:00
|
|
|
if __name__ == "__main__":
|
2014-08-22 17:35:40 +02:00
|
|
|
publisher.port = 6380
|
2014-08-20 15:14:57 +02:00
|
|
|
publisher.channel = "Script"
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-31 22:42:12 +02:00
|
|
|
torclient_host = '127.0.0.1'
|
|
|
|
torclient_port = 9050
|
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
config_section = 'Onion'
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
p = Process(config_section)
|
2014-09-01 16:18:06 +02:00
|
|
|
r_cache = redis.StrictRedis(
|
|
|
|
host=p.config.get("Redis_Cache", "host"),
|
|
|
|
port=p.config.getint("Redis_Cache", "port"),
|
|
|
|
db=p.config.getint("Redis_Cache", "db"))
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
# FUNCTIONS #
|
|
|
|
publisher.info("Script subscribed to channel onion_categ")
|
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
# FIXME For retro compatibility
|
|
|
|
channel = 'onion_categ'
|
|
|
|
|
2014-08-14 17:55:18 +02:00
|
|
|
# Getting the first message from redis.
|
2014-08-29 19:37:56 +02:00
|
|
|
message = p.get_from_set()
|
2014-08-06 11:43:40 +02:00
|
|
|
prec_filename = None
|
|
|
|
|
2014-08-14 17:55:18 +02:00
|
|
|
# Thanks to Faup project for this regex
|
2014-08-06 11:43:40 +02:00
|
|
|
# https://github.com/stricaud/faup
|
2014-08-31 22:42:12 +02:00
|
|
|
url_regex = "((http|https|ftp)\://([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\.\,\?\'\\\+&%\$#\=~_\-]+))*)"
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
while True:
|
2014-08-14 17:55:18 +02:00
|
|
|
if message is not None:
|
2014-08-29 19:37:56 +02:00
|
|
|
print message
|
2014-09-05 17:05:45 +02:00
|
|
|
filename, score = message.split()
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
# "For each new paste"
|
2014-08-14 17:55:18 +02:00
|
|
|
if prec_filename is None or filename != prec_filename:
|
2014-08-06 11:43:40 +02:00
|
|
|
domains_list = []
|
2014-08-31 22:42:12 +02:00
|
|
|
urls = []
|
2014-08-14 17:55:18 +02:00
|
|
|
PST = Paste.Paste(filename)
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
for x in PST.get_regex(url_regex):
|
2014-08-14 17:55:18 +02:00
|
|
|
# Extracting url with regex
|
2014-08-31 22:42:12 +02:00
|
|
|
url, s, credential, subdomain, domain, host, port, \
|
2014-08-20 15:14:57 +02:00
|
|
|
resource_path, query_string, f1, f2, f3, f4 = x
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
domains_list.append(domain)
|
2014-08-31 22:42:12 +02:00
|
|
|
urls.append(url)
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-14 17:55:18 +02:00
|
|
|
# Saving the list of extracted onion domains.
|
2014-08-06 11:43:40 +02:00
|
|
|
PST.__setattr__(channel, domains_list)
|
2014-08-21 12:22:07 +02:00
|
|
|
PST.save_attribute_redis(channel, domains_list)
|
2014-08-20 15:14:57 +02:00
|
|
|
to_print = 'Onion;{};{};{};'.format(PST.p_source, PST.p_date,
|
|
|
|
PST.p_name)
|
2014-08-06 11:43:40 +02:00
|
|
|
if len(domains_list) > 0:
|
2014-08-31 22:42:12 +02:00
|
|
|
|
2016-10-27 11:50:24 +02:00
|
|
|
publisher.warning('{}Detected {} .onion(s);{}'.format(
|
|
|
|
to_print, len(domains_list),PST.p_path))
|
2014-08-31 22:42:12 +02:00
|
|
|
now = datetime.datetime.now()
|
|
|
|
path = os.path.join('onions', str(now.year).zfill(4),
|
|
|
|
str(now.month).zfill(2),
|
|
|
|
str(now.day).zfill(2),
|
|
|
|
str(int(time.mktime(now.utctimetuple()))))
|
2014-09-01 16:18:06 +02:00
|
|
|
to_print = 'Onion;{};{};{};'.format(PST.p_source,
|
|
|
|
PST.p_date,
|
|
|
|
PST.p_name)
|
|
|
|
for url in fetch(p, r_cache, urls, domains_list, path):
|
2016-10-27 11:50:24 +02:00
|
|
|
publisher.warning('{}Checked {};{}'.format(to_print, url, PST.p_path))
|
2014-08-06 11:43:40 +02:00
|
|
|
else:
|
2016-10-27 11:50:24 +02:00
|
|
|
publisher.info('{}Onion related;{}'.format(to_print, PST.p_path))
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
prec_filename = filename
|
|
|
|
else:
|
|
|
|
publisher.debug("Script url is Idling 10s")
|
2014-08-29 19:37:56 +02:00
|
|
|
print 'Sleeping'
|
2014-08-06 11:43:40 +02:00
|
|
|
time.sleep(10)
|
2014-08-29 19:37:56 +02:00
|
|
|
message = p.get_from_set()
|