mirror of
https://github.com/adulau/crl-monitor.git
synced 2024-11-22 10:07:05 +00:00
37 lines
1 KiB
Python
37 lines
1 KiB
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
#
|
||
|
# Tool to parse output of ssldump (not compiled with OpenSSL) to dump raw certificate
|
||
|
#
|
||
|
# Software is free software released under the GNU General Public License version 3 and later
|
||
|
#
|
||
|
# Copyright (c) 2015 Alexandre Dulaunoy - a@foo.be
|
||
|
|
||
|
import fileinput
|
||
|
import re
|
||
|
import binascii
|
||
|
import OpenSSL
|
||
|
|
||
|
cert = None
|
||
|
certstring = ""
|
||
|
|
||
|
for l in fileinput.input():
|
||
|
if re.match('^\s+Certificate\s*$', l):
|
||
|
cert = True
|
||
|
continue
|
||
|
elif re.match('^\S+', l):
|
||
|
cert = None
|
||
|
|
||
|
if (cert is True):
|
||
|
certstring += l.rstrip('\n')
|
||
|
|
||
|
if ((cert is None) and (len(certstring) > 0)):
|
||
|
y = re.sub(" ", "", certstring).split('=')
|
||
|
a = y[1].split('certificate')[0]
|
||
|
dercert = binascii.unhexlify(a)
|
||
|
x509 = OpenSSL.crypto.load_certificate(OpenSSL.crypto.FILETYPE_ASN1, dercert)
|
||
|
fp = x509.digest('sha1').replace(':','').lower()
|
||
|
print OpenSSL.crypto.dump_certificate(OpenSSL.crypto.FILETYPE_PEM, x509)
|
||
|
certstring = ""
|
||
|
y = ""
|