Skip to content

Commit

Permalink
Software Definition Update - Fix openssl CVE discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
7h3Rabbit committed Dec 28, 2024
1 parent d6ab297 commit 7835543
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/update_software_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ def extend_versions_for_openssl_vulnerabilities(versions):

ver = sorted(versions.keys(), reverse=False)

section_regex = r'<h4 id="(?P<CVE>CVE[0-9-]+)">.*?<dl>(?P<content>.*?)<\/dl>'
section_regex = r'<h3 id="(?P<CVE>CVE[0-9-]+)">.*?<dl>(?P<content>.*?)<\/dl>'
section_regex_matches = re.finditer(
section_regex, raw_data, re.MULTILINE | re.S)

Expand Down

0 comments on commit 7835543

Please sign in to comment.