From 41c032b93012d5ee2e6ffed242660d852c53fd1b Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Mon, 2 Feb 2015 07:59:35 +0100 Subject: [PATCH] Follow scans.io format --- bin/x509/pcap-sslcert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/x509/pcap-sslcert.py b/bin/x509/pcap-sslcert.py index dc64203..3616f55 100644 --- a/bin/x509/pcap-sslcert.py +++ b/bin/x509/pcap-sslcert.py @@ -60,7 +60,7 @@ for l in fileinput.input(args.r): if args.j: print (json.dumps(c)) elif args.f: - print (c['fp']+","+c['dstip']+","+x509.get_subject().CN) + print (c['dstip']+","+c['fp']+","+x509.get_subject().CN) else: print (c['pem']) certstring = ""