Skip to content

Commit

Permalink
Merge pull request #17 from dhs-ncats/bugfix/taking_into_account_tls1…
Browse files Browse the repository at this point in the history
…3_field

Taking into account new TLS 1.3 field from domain-scan
  • Loading branch information
jsf9k authored Apr 9, 2018
2 parents 085141e + da56a56 commit b7a3ec8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 17 deletions.
33 changes: 17 additions & 16 deletions sslyze_csv2mongo.py
Original file line number Diff line number Diff line change
Expand Up @@ -171,22 +171,23 @@ def store_data(clean_federal, agency_dict, db_config_file):
'tlsv1_0': row[7],
'tlsv1_1': row[8],
'tlsv1_2': row[9],
'any_forward_secrecy': row[10],
'all_forward_secrecy': row[11],
'weakest_dh_group_size': row[12],
'any_rc4': row[13],
'all_rc4': row[14],
'any_3des': row[15],
'key_type': row[16],
'key_length': row[17],
'signature_algorithm': row[18],
'sha1_in_served_chain': row[19],
'sha1_in_construsted_chain': row[20],
'not_before': row[21],
'not_after': row[22],
'highest_served_issuer': row[23],
'highest_constructed_issuer': row[24],
'errors': row[25],
'tlsv1_3': row[10],
'any_forward_secrecy': row[11],
'all_forward_secrecy': row[12],
'weakest_dh_group_size': row[13],
'any_rc4': row[14],
'all_rc4': row[15],
'any_3des': row[16],
'key_type': row[17],
'key_length': row[18],
'signature_algorithm': row[19],
'sha1_in_served_chain': row[20],
'sha1_in_construsted_chain': row[21],
'not_before': row[22],
'not_after': row[23],
'highest_served_issuer': row[24],
'highest_constructed_issuer': row[25],
'errors': row[26],
'scan_date': date_today,
'latest': True
})
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
1.0.1-rc.1

0 comments on commit b7a3ec8

Please sign in to comment.