Skip to content

Commit

Permalink
🐛 fix incorrect TLS finding definition (1.8) (#1096)
Browse files Browse the repository at this point in the history
Co-authored-by: zcrt <115991818+zcrt@users.noreply.github.com>
Co-authored-by: Mark Janssen <20283+praseodym@users.noreply.github.com>
Co-authored-by: ammar92 <ammar.abdulamir@gmail.com>
  • Loading branch information
4 people committed Jun 2, 2023
1 parent 42bf33b commit 72c32d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion boefjes/boefjes/plugins/kat_ssl_scan/normalize.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def run(normalizer_meta: NormalizerMeta, raw: Union[bytes, str]) -> Iterator[OOI
yield kft
yield Finding(finding_type=kft.reference, ooi=website_reference)
elif ("tls", "1.0", True) in protocols and ("tls", "1.1", True) in protocols:
kft = KATFindingType(id="KAT-TLS-1.1-AND-1.2-SUPPORT")
kft = KATFindingType(id="KAT-TLS-1.0-AND-1.1-SUPPORT")
yield kft
yield Finding(finding_type=kft.reference, ooi=website_reference)
elif ("tls", "1.2", False) in protocols:
Expand Down
2 changes: 1 addition & 1 deletion rocky/OOI_database_seed.json
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@
},
{
"model": "tools.ooiinformation",
"pk": "KATFindingType|KAT-TLS-1.1-AND-1.2-SUPPORT",
"pk": "KATFindingType|KAT-TLS-1.0-AND-1.1-SUPPORT",
"fields": {
"last_updated": "2021-08-09T14:50:09.835Z",
"data": {
Expand Down

0 comments on commit 72c32d4

Please sign in to comment.