mirror of
https://github.com/adulau/crl-monitor.git
synced 2024-11-21 17:47:09 +00:00
Add multiprocessing on queries
This commit is contained in:
parent
a4dfadfe04
commit
1078d2f159
1 changed files with 126 additions and 77 deletions
|
@ -17,6 +17,9 @@ import os
|
||||||
|
|
||||||
import M2Crypto
|
import M2Crypto
|
||||||
|
|
||||||
|
from tornado.concurrent import run_on_executor
|
||||||
|
from concurrent.futures import ThreadPoolExecutor
|
||||||
|
|
||||||
import tornado.httpserver
|
import tornado.httpserver
|
||||||
import tornado.ioloop
|
import tornado.ioloop
|
||||||
import tornado.options
|
import tornado.options
|
||||||
|
@ -25,38 +28,46 @@ import tornado.web
|
||||||
from tornado.options import define, options
|
from tornado.options import define, options
|
||||||
define("port", default=8888, help="run on the given port", type=int)
|
define("port", default=8888, help="run on the given port", type=int)
|
||||||
certrepo = '/data/certs{}'
|
certrepo = '/data/certs{}'
|
||||||
ipmaxsize = 512 #/23
|
ipmaxsize = 512 # /23
|
||||||
servername = 'SSL Certificate API - https://github.com/adulau/crl-monitor'
|
servername = 'SSL Certificate API - https://github.com/adulau/crl-monitor'
|
||||||
|
|
||||||
|
|
||||||
def checksha1(value=False):
|
def checksha1(value=False):
|
||||||
if value is False or len(value) != 40:
|
if value is False or len(value) != 40:
|
||||||
return False
|
return False
|
||||||
try:
|
try:
|
||||||
sha1int = int(value, 16)
|
int(value, 16)
|
||||||
except ValueError:
|
except ValueError:
|
||||||
return False
|
return False
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
def bpath(ha=None, level=6):
|
def bpath(ha=None, level=6):
|
||||||
if ha is None:
|
if ha is None:
|
||||||
return False
|
return False
|
||||||
fn = ""
|
fn = ""
|
||||||
for i in range(0, level*2, 2):
|
for i in range(0, level * 2, 2):
|
||||||
fn = fn + "/"+ ha[i:2+i]
|
fn = fn + "/" + ha[i:2 + i]
|
||||||
return fn
|
return fn
|
||||||
|
|
||||||
|
|
||||||
class SSLQueryHandler(tornado.web.RequestHandler):
|
class SSLQueryHandler(tornado.web.RequestHandler):
|
||||||
|
|
||||||
def get(self, input):
|
# Default value in Python 3.5
|
||||||
|
# https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.ThreadPoolExecutor
|
||||||
|
nb_threads = tornado.process.cpu_count() * 5
|
||||||
|
executor = ThreadPoolExecutor(nb_threads)
|
||||||
|
|
||||||
|
@run_on_executor
|
||||||
|
def run_request(self, q):
|
||||||
try:
|
try:
|
||||||
#Redis structure Set of (FP) per IP
|
# Redis structure Set of (FP) per IP
|
||||||
r = redis.StrictRedis(host='127.0.0.1', port=8323)
|
r = redis.StrictRedis(host='127.0.0.1', port=8323)
|
||||||
except:
|
except:
|
||||||
print "Unable to connect to the Redis server"
|
print("Unable to connect to the Redis server")
|
||||||
sys.exit(255)
|
sys.exit(255)
|
||||||
subnets = [input]
|
subnets = [q]
|
||||||
out = {}
|
out = {}
|
||||||
for subnet in subnets:
|
for subnet in subnets:
|
||||||
if re.findall(r":", subnet):
|
if re.findall(r":", subnet):
|
||||||
|
@ -83,108 +94,146 @@ class SSLQueryHandler(tornado.web.RequestHandler):
|
||||||
s = r.smembers(ip)
|
s = r.smembers(ip)
|
||||||
if s:
|
if s:
|
||||||
out[str(ip)] = {}
|
out[str(ip)] = {}
|
||||||
out[str(ip)]['certificates'] = []
|
out[str(ip)]['certificates'] = []
|
||||||
out[str(ip)]['subjects'] = {}
|
out[str(ip)]['subjects'] = {}
|
||||||
for fingerprint in s:
|
for fingerprint in s:
|
||||||
subjects = r.smembers(fingerprint)
|
subjects = r.smembers(fingerprint)
|
||||||
out[str(ip)]['certificates'].append(fingerprint)
|
out[str(ip)]['certificates'].append(fingerprint)
|
||||||
if subjects:
|
if subjects:
|
||||||
out[str(ip)]['subjects'][fingerprint] = {}
|
out[str(ip)]['subjects'][fingerprint] = {}
|
||||||
out[str(ip)]['subjects'][fingerprint]['values'] = []
|
out[str(ip)]['subjects'][fingerprint]['values'] = []
|
||||||
for subject in subjects:
|
for subject in subjects:
|
||||||
out[str(ip)]['subjects'][fingerprint]['values'].append(subject)
|
out[str(ip)]['subjects'][fingerprint]['values'].append(subject)
|
||||||
|
|
||||||
if not self._finished:
|
if not self._finished:
|
||||||
self.set_header('Content-Type', 'application/json')
|
self.set_header('Content-Type', 'application/json')
|
||||||
self.set_header('Server', servername)
|
self.set_header('Server', servername)
|
||||||
self.write(json.dumps(out))
|
return json.dumps(out)
|
||||||
|
|
||||||
|
def get(self, q):
|
||||||
|
print("Query:", q)
|
||||||
|
try:
|
||||||
|
r = yield self.run_request(q)
|
||||||
|
self.write(r)
|
||||||
|
except Exception as e:
|
||||||
|
print('Something went wrong with {}:\n{}'.format(q, e))
|
||||||
|
|
||||||
|
|
||||||
class CertificateQueryHandler(tornado.web.RequestHandler):
|
class CertificateQueryHandler(tornado.web.RequestHandler):
|
||||||
def get(self, input):
|
|
||||||
|
# Default value in Python 3.5
|
||||||
|
# https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.ThreadPoolExecutor
|
||||||
|
nb_threads = tornado.process.cpu_count() * 5
|
||||||
|
executor = ThreadPoolExecutor(nb_threads)
|
||||||
|
|
||||||
|
@run_on_executor
|
||||||
|
def run_request(self, q):
|
||||||
try:
|
try:
|
||||||
r = redis.StrictRedis(host='127.0.0.1', port=8323)
|
r = redis.StrictRedis(host='127.0.0.1', port=8323)
|
||||||
except:
|
except:
|
||||||
print "Unable to connect to the Redis server"
|
print("Unable to connect to the Redis server")
|
||||||
sys.exit(255)
|
sys.exit(255)
|
||||||
fp = input.lower()
|
fp = q.lower()
|
||||||
if not checksha1(value=fp):
|
|
||||||
self.clear()
|
|
||||||
self.set_status(400)
|
|
||||||
self.finish('Incorrect format of the certificate fingerprint (expected SHA1 in hex format)')
|
|
||||||
|
|
||||||
out = {}
|
|
||||||
out['certificate'] = fp
|
|
||||||
out['seen'] = []
|
|
||||||
ips = r.smembers('s:{}'.format(fp))
|
|
||||||
out['hits'] = len(ips)
|
|
||||||
for ip in ips:
|
|
||||||
out['seen'].append(ip)
|
|
||||||
|
|
||||||
if not self._finished:
|
|
||||||
self.set_header('Content-Type', 'application/json')
|
|
||||||
self.set_header('Server', servername)
|
|
||||||
self.write(json.dumps(out))
|
|
||||||
|
|
||||||
class FetchCertificateHandler(tornado.web.RequestHandler):
|
|
||||||
def get(self, input):
|
|
||||||
try:
|
|
||||||
r = redis.StrictRedis(host='127.0.0.1', port=8323)
|
|
||||||
except:
|
|
||||||
print ("Unable to connect to the Redis server")
|
|
||||||
sys.exit(255)
|
|
||||||
|
|
||||||
#ICSI data
|
|
||||||
try:
|
|
||||||
ricsi = redis.StrictRedis(host='localhost', port=6380, db=5)
|
|
||||||
except:
|
|
||||||
print ("Unable to connect to the Redis ICSI notary server")
|
|
||||||
|
|
||||||
fp = input.lower()
|
|
||||||
if not checksha1(value=fp):
|
if not checksha1(value=fp):
|
||||||
self.clear()
|
self.clear()
|
||||||
self.set_status(400)
|
self.set_status(400)
|
||||||
self.finish('Incorrect format of the certificate fingerprint (expected SHA1 in hex format)')
|
self.finish('Incorrect format of the certificate fingerprint (expected SHA1 in hex format)')
|
||||||
|
|
||||||
certpath = bpath(ha=fp)
|
out = {}
|
||||||
certpath = os.path.join(certpath, fp)
|
out['certificate'] = fp
|
||||||
certpath = certrepo.format(certpath)
|
out['seen'] = []
|
||||||
if not os.path.exists(certpath):
|
ips = r.smembers('s:{}'.format(fp))
|
||||||
self.clear()
|
out['hits'] = len(ips)
|
||||||
self.set_status(400)
|
for ip in ips:
|
||||||
|
out['seen'].append(ip)
|
||||||
|
|
||||||
|
if not self._finished:
|
||||||
|
self.set_header('Content-Type', 'application/json')
|
||||||
|
self.set_header('Server', servername)
|
||||||
|
return json.dumps(out)
|
||||||
|
|
||||||
|
def get(self, q):
|
||||||
|
print("Query:", q)
|
||||||
|
try:
|
||||||
|
r = yield self.run_request(q)
|
||||||
|
self.write(r)
|
||||||
|
except Exception as e:
|
||||||
|
print('Something went wrong with {}:\n{}'.format(q, e))
|
||||||
|
|
||||||
|
|
||||||
|
class FetchCertificateHandler(tornado.web.RequestHandler):
|
||||||
|
|
||||||
|
# Default value in Python 3.5
|
||||||
|
# https://docs.python.org/3/library/concurrent.futures.html#concurrent.futures.ThreadPoolExecutor
|
||||||
|
nb_threads = tornado.process.cpu_count() * 5
|
||||||
|
executor = ThreadPoolExecutor(nb_threads)
|
||||||
|
|
||||||
|
@run_on_executor
|
||||||
|
def run_request(self, q):
|
||||||
|
# ICSI data
|
||||||
|
try:
|
||||||
|
ricsi = redis.StrictRedis(host='localhost', port=6380, db=5)
|
||||||
|
except:
|
||||||
|
print("Unable to connect to the Redis ICSI notary server")
|
||||||
|
|
||||||
|
fp = q.lower()
|
||||||
|
if not checksha1(value=fp):
|
||||||
|
self.clear()
|
||||||
|
self.set_status(400)
|
||||||
|
self.finish('Incorrect format of the certificate fingerprint (expected SHA1 in hex format)')
|
||||||
|
|
||||||
|
certpath = bpath(ha=fp)
|
||||||
|
certpath = os.path.join(certpath, fp)
|
||||||
|
certpath = certrepo.format(certpath)
|
||||||
|
if not os.path.exists(certpath):
|
||||||
|
self.clear()
|
||||||
|
self.set_status(400)
|
||||||
self.finish('Not existing certificate')
|
self.finish('Not existing certificate')
|
||||||
|
|
||||||
cert = M2Crypto.X509.load_cert(certpath, M2Crypto.X509.FORMAT_DER)
|
cert = M2Crypto.X509.load_cert(certpath, M2Crypto.X509.FORMAT_DER)
|
||||||
out = {}
|
out = {}
|
||||||
out['pem'] = cert.as_pem()
|
out['pem'] = cert.as_pem()
|
||||||
out['info'] = {}
|
out['info'] = {}
|
||||||
out['info']['issuer'] = cert.get_issuer().as_text()
|
out['info']['issuer'] = cert.get_issuer().as_text()
|
||||||
out['info']['subject'] = cert.get_subject().as_text()
|
out['info']['subject'] = cert.get_subject().as_text()
|
||||||
out['info']['fingerprint'] = cert.get_fingerprint(md='sha1')
|
out['info']['fingerprint'] = cert.get_fingerprint(md='sha1')
|
||||||
out['info']['keylength'] = cert.get_pubkey().get_rsa().__len__()
|
out['info']['keylength'] = cert.get_pubkey().get_rsa().__len__()
|
||||||
out['info']['key'] = cert.get_pubkey().get_rsa().as_pem()
|
out['info']['key'] = cert.get_pubkey().get_rsa().as_pem()
|
||||||
out['info']['not_before'] = cert.get_not_before().get_datetime().isoformat()
|
out['info']['not_before'] = cert.get_not_before().get_datetime().isoformat()
|
||||||
out['info']['not_after'] = cert.get_not_after().get_datetime().isoformat()
|
out['info']['not_after'] = cert.get_not_after().get_datetime().isoformat()
|
||||||
out['info']['extension'] = {}
|
out['info']['extension'] = {}
|
||||||
extcount = cert.get_ext_count()
|
extcount = cert.get_ext_count()
|
||||||
|
|
||||||
for i in range(0, extcount):
|
for i in range(0, extcount):
|
||||||
out['info']['extension'][cert.get_ext_at(i).get_name()] = cert.get_ext_at(i).get_value()
|
out['info']['extension'][cert.get_ext_at(i).get_name()] = cert.get_ext_at(i).get_value()
|
||||||
if ricsi.exists(fp):
|
if ricsi.exists(fp):
|
||||||
icsi = ricsi.hgetall(fp)
|
icsi = ricsi.hgetall(fp)
|
||||||
out['icsi'] = icsi
|
out['icsi'] = icsi
|
||||||
if not self._finished:
|
if not self._finished:
|
||||||
self.set_header('Content-Type', 'application/json')
|
self.set_header('Content-Type', 'application/json')
|
||||||
self.set_header('Server', servername)
|
self.set_header('Server', servername)
|
||||||
self.write(json.dumps(out))
|
return json.dumps(out)
|
||||||
|
|
||||||
if __name__ == "__main__":
|
def get(self, q):
|
||||||
|
print("Query:", q)
|
||||||
|
try:
|
||||||
|
r = yield self.run_request(q)
|
||||||
|
self.write(r)
|
||||||
|
except Exception as e:
|
||||||
|
print('Something went wrong with {}:\n{}'.format(q, e))
|
||||||
|
|
||||||
|
|
||||||
|
def main():
|
||||||
tornado.options.parse_command_line()
|
tornado.options.parse_command_line()
|
||||||
app = tornado.web.Application(handlers=[
|
app = tornado.web.Application(handlers=[
|
||||||
(r"/query/(.*)", SSLQueryHandler),
|
(r"/query/(.*)", SSLQueryHandler),
|
||||||
(r"/cquery/(.*)", CertificateQueryHandler),
|
(r"/cquery/(.*)", CertificateQueryHandler),
|
||||||
(r"/cfetch/(.*)", FetchCertificateHandler)
|
(r"/cfetch/(.*)", FetchCertificateHandler)
|
||||||
])
|
])
|
||||||
http_server = tornado.httpserver.HTTPServer(app)
|
http_server = tornado.httpserver.HTTPServer(app)
|
||||||
http_server.listen(options.port)
|
http_server.listen(options.port)
|
||||||
tornado.ioloop.IOLoop.instance().start()
|
tornado.ioloop.IOLoop.instance().start()
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == '__main__':
|
||||||
|
sys.exit(main())
|
||||||
|
|
Loading…
Reference in a new issue