Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Another disputed string for CVE-2023-39017 #188

Merged
merged 1 commit into from
Aug 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "appthreat-vulnerability-db"
version = "6.0.13"
version = "6.0.14"
description = "AppThreat's vulnerability database and package search library with a built-in sqlite based storage. OSV, CVE, GitHub, npm are the primary sources of vulnerabilities."
authors = [
{name = "Team AppThreat", email = "cloud@appthreat.com"},
Expand Down
6 changes: 4 additions & 2 deletions vdb/lib/nvd.py
Original file line number Diff line number Diff line change
Expand Up @@ -436,8 +436,10 @@ def convert_api_vuln(vuln: dict) -> Vulnerability | None:
break
description = NvdSource._get_value(vuln, "descriptions")
# Ignore disputed CVEs. Eg: CVE-2023-35116
if "** DISPUTED **" in description or "this is not a valid vulnerability report" in description:
return None
# CVE-2023-39017 uses the phrase "this is disputed"
for ds in ("** DISPUTED **", "this is not a valid vulnerability report", "this is disputed"):
if ds in description:
return None
affected_symbols = extract_affected_symbols(description)
rdata = vuln.get("references", [])
related_urls = [r["url"] for r in rdata]
Expand Down