mirror of
https://github.com/adulau/crl-monitor.git
synced 2024-11-22 01:57:05 +00:00
Verbose mode option added
This commit is contained in:
parent
ab10d41c19
commit
64a77a9677
1 changed files with 3 additions and 2 deletions
|
@ -21,6 +21,7 @@ fp = '592978A72A9061F70AD7C44C4D449DCF258CD534'
|
||||||
|
|
||||||
argParser = argparse.ArgumentParser(description='Lookup a series of certificate fingerprints ICSI Certificate Notary')
|
argParser = argparse.ArgumentParser(description='Lookup a series of certificate fingerprints ICSI Certificate Notary')
|
||||||
argParser.add_argument('-r', default='-', help='Read from a file, default is stdin')
|
argParser.add_argument('-r', default='-', help='Read from a file, default is stdin')
|
||||||
|
argParser.add_argument('-v', default=False, action='store_true', help='Verbose output including ICSI output')
|
||||||
args = argParser.parse_args()
|
args = argParser.parse_args()
|
||||||
|
|
||||||
icsi_keys = ['version','first_seen','last_seen', 'times_seen', 'validated']
|
icsi_keys = ['version','first_seen','last_seen', 'times_seen', 'validated']
|
||||||
|
@ -39,5 +40,5 @@ for l in fileinput.input(args.r):
|
||||||
rd = {}
|
rd = {}
|
||||||
rd = dict(token.split('=') for token in shlex.split(txt))
|
rd = dict(token.split('=') for token in shlex.split(txt))
|
||||||
rstore.hmset(fp, rd)
|
rstore.hmset(fp, rd)
|
||||||
print (rd)
|
if args.v:
|
||||||
#print ("{},{}".format(fp,r[0]))
|
print ("{},{}".format(fp,rd))
|
||||||
|
|
Loading…
Reference in a new issue