2016-02-04 15:22:51 +01:00
|
|
|
#!/usr/bin/env python
|
2014-08-06 11:43:40 +02:00
|
|
|
# -*-coding:UTF-8 -*
|
2014-08-14 17:55:18 +02:00
|
|
|
import redis
|
|
|
|
import pprint
|
|
|
|
import time
|
2014-08-11 09:27:50 +02:00
|
|
|
import dns.exception
|
2014-08-14 17:55:18 +02:00
|
|
|
from packages import Paste
|
2014-08-06 11:43:40 +02:00
|
|
|
from packages import lib_refine
|
|
|
|
from pubsublogger import publisher
|
|
|
|
|
2014-08-14 14:22:11 +02:00
|
|
|
# Country and ASN lookup
|
|
|
|
from cymru.ip2asn.dns import DNSClient as ip2asn
|
|
|
|
import socket
|
|
|
|
import pycountry
|
|
|
|
import ipaddress
|
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
from Helper import Process
|
2014-08-06 11:43:40 +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-14 17:55:18 +02:00
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
config_section = 'Web'
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
p = Process(config_section)
|
2014-08-06 11:43:40 +02:00
|
|
|
|
2014-08-20 15:14:57 +02:00
|
|
|
# REDIS #
|
2014-08-06 11:43:40 +02:00
|
|
|
r_serv2 = redis.StrictRedis(
|
2014-08-29 19:37:56 +02:00
|
|
|
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
|
|
|
|
2014-08-14 17:55:18 +02:00
|
|
|
# Country to log as critical
|
2014-09-05 10:42:01 +02:00
|
|
|
cc_critical = p.config.get("Url", "cc_critical")
|
2014-08-06 11:43:40 +02:00
|
|
|
|
|
|
|
# FUNCTIONS #
|
|
|
|
publisher.info("Script URL subscribed to channel web_categ")
|
|
|
|
|
2014-08-29 19:37:56 +02:00
|
|
|
# FIXME For retro compatibility
|
|
|
|
channel = 'web_categ'
|
|
|
|
|
|
|
|
message = p.get_from_set()
|
2014-08-06 11:43:40 +02:00
|
|
|
prec_filename = None
|
|
|
|
|
|
|
|
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\-]+\.(com|edu|gov|int|mil|net|org|biz|arpa|info|name|pro|aero|coop|museum|[a-zA-Z]{2}))(\:[0-9]+)*(/($|[a-zA-Z0-9\.\,\?\'\\\+&%\$#\=~_\-]+))*"
|
|
|
|
|
|
|
|
while True:
|
2014-09-04 11:46:07 +02:00
|
|
|
if message is not None:
|
2014-09-05 17:05:45 +02:00
|
|
|
filename, score = message.split()
|
2014-09-04 11:46:07 +02:00
|
|
|
|
|
|
|
if prec_filename is None or filename != prec_filename:
|
|
|
|
domains_list = []
|
|
|
|
PST = Paste.Paste(filename)
|
|
|
|
client = ip2asn()
|
|
|
|
for x in PST.get_regex(url_regex):
|
|
|
|
scheme, credential, subdomain, domain, host, tld, \
|
|
|
|
port, resource_path, query_string, f1, f2, f3, \
|
|
|
|
f4 = x
|
|
|
|
domains_list.append(domain)
|
2016-06-30 14:36:47 +02:00
|
|
|
# p.populate_set_out(x, 'Url')
|
|
|
|
temp_x = ()
|
|
|
|
for i in range(0,13):
|
|
|
|
if x[i] == '':
|
|
|
|
temp_x += ('None', )
|
|
|
|
else:
|
|
|
|
temp_x += (x[i], )
|
|
|
|
temp_scheme, temp_credential, temp_subdomain, temp_domain, temp_host, temp_tld, \
|
|
|
|
temp_port, temp_resource_path, temp_query_string, temp_f1, temp_f2, temp_f3, \
|
|
|
|
temp_f4 = temp_x
|
|
|
|
|
|
|
|
to_send = '{} {} {} {} {} {} {} {} {} {} {} {} {} {}'.format(temp_scheme, \
|
|
|
|
temp_subdomain, temp_credential, temp_domain, temp_host, temp_tld, temp_port, temp_resource_path,\
|
|
|
|
temp_query_string, temp_f1, temp_f2, temp_f3, temp_f4, PST._get_p_date())
|
|
|
|
p.populate_set_out(to_send , 'Url')
|
2014-09-04 11:46:07 +02:00
|
|
|
publisher.debug('{} Published'.format(x))
|
|
|
|
|
|
|
|
if f1 == "onion":
|
|
|
|
print domain
|
|
|
|
|
|
|
|
hostl = unicode(subdomain+domain)
|
|
|
|
try:
|
|
|
|
socket.setdefaulttimeout(2)
|
|
|
|
ip = socket.gethostbyname(unicode(hostl))
|
|
|
|
except:
|
|
|
|
# If the resolver is not giving any IPv4 address,
|
|
|
|
# ASN/CC lookup is skip.
|
|
|
|
continue
|
|
|
|
|
|
|
|
try:
|
|
|
|
l = client.lookup(ip, qType='IP')
|
|
|
|
except ipaddress.AddressValueError:
|
|
|
|
continue
|
|
|
|
cc = getattr(l, 'cc')
|
|
|
|
asn = getattr(l, 'asn')
|
|
|
|
|
|
|
|
# EU is not an official ISO 3166 code (but used by RIPE
|
|
|
|
# IP allocation)
|
|
|
|
if cc is not None and cc != "EU":
|
|
|
|
print hostl, asn, cc, \
|
|
|
|
pycountry.countries.get(alpha2=cc).name
|
|
|
|
if cc == cc_critical:
|
|
|
|
publisher.warning(
|
|
|
|
'Url;{};{};{};Detected {} {}'.format(
|
|
|
|
PST.p_source, PST.p_date, PST.p_name,
|
|
|
|
hostl, cc))
|
|
|
|
else:
|
|
|
|
print hostl, asn, cc
|
|
|
|
|
|
|
|
A_values = lib_refine.checking_A_record(r_serv2,
|
|
|
|
domains_list)
|
|
|
|
if A_values[0] >= 1:
|
|
|
|
PST.__setattr__(channel, A_values)
|
|
|
|
PST.save_attribute_redis(channel, (A_values[0],
|
|
|
|
list(A_values[1])))
|
|
|
|
|
|
|
|
pprint.pprint(A_values)
|
|
|
|
publisher.info('Url;{};{};{};Checked {} URL'.format(
|
|
|
|
PST.p_source, PST.p_date, PST.p_name, A_values[0]))
|
|
|
|
prec_filename = filename
|
|
|
|
|
|
|
|
else:
|
|
|
|
publisher.debug("Script url is Idling 10s")
|
|
|
|
print 'Sleeping'
|
|
|
|
time.sleep(10)
|
|
|
|
|
|
|
|
message = p.get_from_set()
|