From 6b4e3021f702311b8362797ae8d6808e5c37acee Mon Sep 17 00:00:00 2001 From: Frank Viernau Date: Mon, 23 Dec 2024 22:18:15 +0100 Subject: [PATCH] test(osv): Update expected results Signed-off-by: Frank Viernau --- ...s-by-name-and-version-expected-result.json | 258 +++++++++++++++++- .../kotlin/OsvServiceWrapperFunTest.kt | 2 + 2 files changed, 259 insertions(+), 1 deletion(-) diff --git a/clients/osv/src/funTest/assets/vulnerabilities-by-name-and-version-expected-result.json b/clients/osv/src/funTest/assets/vulnerabilities-by-name-and-version-expected-result.json index e79c3cd1a91b7..cfba5acbf6851 100644 --- a/clients/osv/src/funTest/assets/vulnerabilities-by-name-and-version-expected-result.json +++ b/clients/osv/src/funTest/assets/vulnerabilities-by-name-and-version-expected-result.json @@ -591,6 +591,136 @@ "nvd_published_at": "2021-02-01T20:15:00Z" } }, + { + "schema_version": "1.6.0", + "id": "GHSA-gmj6-6f8f-6699", + "modified": "2024-12-23T21:02:04.921127Z", + "published": "2024-12-23T17:54:12Z", + "aliases": [ + "CVE-2024-56201" + ], + "summary": "Jinja has a sandbox breakout through malicious filenames", + "details": "A bug in the Jinja compiler allows an attacker that controls both the content and filename of a template to execute arbitrary Python code, regardless of if Jinja's sandbox is used.\n\nTo exploit the vulnerability, an attacker needs to control both the filename and the contents of a template. Whether that is the case depends on the type of application using Jinja. This vulnerability impacts users of applications which execute untrusted templates where the template author can also choose the template filename.", + "severity": [ + { + "type": "CVSS_V4", + "score": "CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:P/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N" + } + ], + "affected": [ + { + "package": { + "ecosystem": "PyPI", + "name": "jinja2", + "purl": "pkg:pypi/jinja2" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "3.1.5" + } + ] + } + ], + "versions": [ + "2.0", + "2.0rc1", + "2.1", + "2.1.1", + "2.10", + "2.10.1", + "2.10.2", + "2.10.3", + "2.11.0", + "2.11.1", + "2.11.2", + "2.11.3", + "2.2", + "2.2.1", + "2.3", + "2.3.1", + "2.4", + "2.4.1", + "2.5", + "2.5.1", + "2.5.2", + "2.5.3", + "2.5.4", + "2.5.5", + "2.6", + "2.7", + "2.7.1", + "2.7.2", + "2.7.3", + "2.8", + "2.8.1", + "2.9", + "2.9.1", + "2.9.2", + "2.9.3", + "2.9.4", + "2.9.5", + "2.9.6", + "3.0.0", + "3.0.0a1", + "3.0.0rc1", + "3.0.0rc2", + "3.0.1", + "3.0.2", + "3.0.3", + "3.1.0", + "3.1.1", + "3.1.2", + "3.1.3", + "3.1.4" + ], + "database_specific": { + "source": "https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2024/12/GHSA-gmj6-6f8f-6699/GHSA-gmj6-6f8f-6699.json", + "last_known_affected_version_range": "<= 3.1.4" + } + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/pallets/jinja/security/advisories/GHSA-gmj6-6f8f-6699" + }, + { + "type": "ADVISORY", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-56201" + }, + { + "type": "WEB", + "url": "https://github.com/pallets/jinja/issues/1792" + }, + { + "type": "WEB", + "url": "https://github.com/pallets/jinja/commit/767b23617628419ae3709ccfb02f9602ae9fe51f" + }, + { + "type": "PACKAGE", + "url": "https://github.com/pallets/jinja" + }, + { + "type": "WEB", + "url": "https://github.com/pallets/jinja/releases/tag/3.1.5" + } + ], + "database_specific": { + "github_reviewed_at": "2024-12-23T17:54:12Z", + "github_reviewed": true, + "severity": "MODERATE", + "cwe_ids": [ + "CWE-150" + ], + "nvd_published_at": "2024-12-23T16:15:07Z" + } + }, { "schema_version": "1.6.0", "id": "GHSA-h5c8-rqwp-cp95", @@ -1024,6 +1154,132 @@ "nvd_published_at": null } }, + { + "schema_version": "1.6.0", + "id": "GHSA-q2x7-8rv6-6q7h", + "modified": "2024-12-23T21:00:55.589606Z", + "published": "2024-12-23T17:56:08Z", + "aliases": [ + "CVE-2024-56326" + ], + "summary": "Jinja has a sandbox breakout through indirect reference to format method", + "details": "An oversight in how the Jinja sandboxed environment detects calls to `str.format` allows an attacker that controls the content of a template to execute arbitrary Python code.\n\nTo exploit the vulnerability, an attacker needs to control the content of a template. Whether that is the case depends on the type of application using Jinja. This vulnerability impacts users of applications which execute untrusted templates.\n\nJinja's sandbox does catch calls to `str.format` and ensures they don't escape the sandbox. However, it's possible to store a reference to a malicious string's `format` method, then pass that to a filter that calls it. No such filters are built-in to Jinja, but could be present through custom filters in an application. After the fix, such indirect calls are also handled by the sandbox.", + "severity": [ + { + "type": "CVSS_V4", + "score": "CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:P/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N" + } + ], + "affected": [ + { + "package": { + "ecosystem": "PyPI", + "name": "jinja2", + "purl": "pkg:pypi/jinja2" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "3.1.5" + } + ] + } + ], + "versions": [ + "2.0", + "2.0rc1", + "2.1", + "2.1.1", + "2.10", + "2.10.1", + "2.10.2", + "2.10.3", + "2.11.0", + "2.11.1", + "2.11.2", + "2.11.3", + "2.2", + "2.2.1", + "2.3", + "2.3.1", + "2.4", + "2.4.1", + "2.5", + "2.5.1", + "2.5.2", + "2.5.3", + "2.5.4", + "2.5.5", + "2.6", + "2.7", + "2.7.1", + "2.7.2", + "2.7.3", + "2.8", + "2.8.1", + "2.9", + "2.9.1", + "2.9.2", + "2.9.3", + "2.9.4", + "2.9.5", + "2.9.6", + "3.0.0", + "3.0.0a1", + "3.0.0rc1", + "3.0.0rc2", + "3.0.1", + "3.0.2", + "3.0.3", + "3.1.0", + "3.1.1", + "3.1.2", + "3.1.3", + "3.1.4" + ], + "database_specific": { + "source": "https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2024/12/GHSA-q2x7-8rv6-6q7h/GHSA-q2x7-8rv6-6q7h.json", + "last_known_affected_version_range": "<= 3.1.4" + } + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/pallets/jinja/security/advisories/GHSA-q2x7-8rv6-6q7h" + }, + { + "type": "ADVISORY", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-56326" + }, + { + "type": "WEB", + "url": "https://github.com/pallets/jinja/commit/48b0687e05a5466a91cd5812d604fa37ad0943b4" + }, + { + "type": "PACKAGE", + "url": "https://github.com/pallets/jinja" + }, + { + "type": "WEB", + "url": "https://github.com/pallets/jinja/releases/tag/3.1.5" + } + ], + "database_specific": { + "github_reviewed_at": "2024-12-23T17:56:08Z", + "github_reviewed": true, + "severity": "MODERATE", + "cwe_ids": [ + "CWE-693" + ], + "nvd_published_at": "2024-12-23T16:15:07Z" + } + }, { "schema_version": "1.6.0", "id": "PYSEC-2014-8", @@ -1630,4 +1886,4 @@ } ] } -] +] \ No newline at end of file diff --git a/clients/osv/src/funTest/kotlin/OsvServiceWrapperFunTest.kt b/clients/osv/src/funTest/kotlin/OsvServiceWrapperFunTest.kt index 0edcaec654602..7335f13085cb2 100644 --- a/clients/osv/src/funTest/kotlin/OsvServiceWrapperFunTest.kt +++ b/clients/osv/src/funTest/kotlin/OsvServiceWrapperFunTest.kt @@ -108,9 +108,11 @@ class OsvServiceWrapperFunTest : StringSpec({ "GHSA-8r7q-cvjq-x353", "GHSA-fqh9-2qgg-h84h", "GHSA-g3rq-g295-4j3m", + "GHSA-gmj6-6f8f-6699", "GHSA-h5c8-rqwp-cp95", "GHSA-h75v-3vvj-5mfj", "GHSA-hj2j-77xm-mc5v", + "GHSA-q2x7-8rv6-6q7h", "PYSEC-2014-8", "PYSEC-2014-82", "PYSEC-2019-217",