Skip to content

Commit

Permalink
Merge pull request #33 from hph86/sha1-warning
Browse files Browse the repository at this point in the history
src/rating - Highlight SHA-1 signatures as warning
  • Loading branch information
phibos committed Feb 11, 2016
2 parents e6aa58e + 17c9066 commit 46b9d46
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions sslscan/module/rating/builtin.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ def __init__(self, **kwargs):
rules=[
lambda v, i, kb: 6 if v.startswith("md2") else None,
lambda v, i, kb: 6 if v.startswith("md5") else None,
lambda v, i, kb: 3 if v.startswith("sha1") else None,
]
)
)
Expand Down

0 comments on commit 46b9d46

Please sign in to comment.