From e8c9c6ba5538602ac38842b2c0c8b34aa8ce82c2 Mon Sep 17 00:00:00 2001 From: "advisory-database[bot]" <45398580+advisory-database[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 16:07:29 +0000 Subject: [PATCH] Publish Advisories GHSA-5hc5-fxr9-5frc GHSA-735f-pc8j-v9w8 GHSA-5hc5-fxr9-5frc --- .../GHSA-5hc5-fxr9-5frc.json | 84 +++++ .../GHSA-735f-pc8j-v9w8.json | 355 ++++++++++++++++++ .../GHSA-5hc5-fxr9-5frc.json | 38 -- 3 files changed, 439 insertions(+), 38 deletions(-) create mode 100644 advisories/github-reviewed/2024/09/GHSA-5hc5-fxr9-5frc/GHSA-5hc5-fxr9-5frc.json create mode 100644 advisories/github-reviewed/2024/09/GHSA-735f-pc8j-v9w8/GHSA-735f-pc8j-v9w8.json delete mode 100644 advisories/unreviewed/2024/09/GHSA-5hc5-fxr9-5frc/GHSA-5hc5-fxr9-5frc.json diff --git a/advisories/github-reviewed/2024/09/GHSA-5hc5-fxr9-5frc/GHSA-5hc5-fxr9-5frc.json b/advisories/github-reviewed/2024/09/GHSA-5hc5-fxr9-5frc/GHSA-5hc5-fxr9-5frc.json new file mode 100644 index 00000000000..bd41eeae583 --- /dev/null +++ b/advisories/github-reviewed/2024/09/GHSA-5hc5-fxr9-5frc/GHSA-5hc5-fxr9-5frc.json @@ -0,0 +1,84 @@ +{ + "schema_version": "1.4.0", + "id": "GHSA-5hc5-fxr9-5frc", + "modified": "2024-09-19T16:06:11Z", + "published": "2024-09-19T00:31:32Z", + "aliases": [ + "CVE-2022-25770" + ], + "summary": "Mautic has insufficient authentication in upgrade flow", + "details": "Mautic allows you to update the application via an upgrade script.\n\nThe upgrade logic isn't shielded off correctly, which may lead to vulnerable situation.\n\nThis vulnerability is mitigated by the fact that Mautic needs to be installed in a certain way to be vulnerable.", + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:C/C:N/I:H/A:H" + }, + { + "type": "CVSS_V4", + "score": "CVSS:4.0/AV:L/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/VA:N/SC:N/SI:N/SA:N" + } + ], + "affected": [ + { + "package": { + "ecosystem": "Packagist", + "name": "mautic/core" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "1.0.0-beta3" + }, + { + "fixed": "4.4.13" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Packagist", + "name": "mautic/core" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "5.0.0" + }, + { + "fixed": "5.1.1" + } + ] + } + ] + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/mautic/mautic/security/advisories/GHSA-qf6m-6m4g-rmrc" + }, + { + "type": "ADVISORY", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-25770" + }, + { + "type": "PACKAGE", + "url": "https://github.com/mautic/mautic" + } + ], + "database_specific": { + "cwe_ids": [ + "CWE-306" + ], + "severity": "HIGH", + "github_reviewed": true, + "github_reviewed_at": "2024-09-19T16:06:11Z", + "nvd_published_at": "2024-09-18T22:15:03Z" + } +} \ No newline at end of file diff --git a/advisories/github-reviewed/2024/09/GHSA-735f-pc8j-v9w8/GHSA-735f-pc8j-v9w8.json b/advisories/github-reviewed/2024/09/GHSA-735f-pc8j-v9w8/GHSA-735f-pc8j-v9w8.json new file mode 100644 index 00000000000..c10af7f6f0e --- /dev/null +++ b/advisories/github-reviewed/2024/09/GHSA-735f-pc8j-v9w8/GHSA-735f-pc8j-v9w8.json @@ -0,0 +1,355 @@ +{ + "schema_version": "1.4.0", + "id": "GHSA-735f-pc8j-v9w8", + "modified": "2024-09-19T16:06:04Z", + "published": "2024-09-19T16:06:03Z", + "aliases": [ + "CVE-2024-7254" + ], + "summary": "protobuf-java has potential Denial of Service issue", + "details": "### Summary\nWhen parsing unknown fields in the Protobuf Java Lite and Full library, a maliciously crafted message can cause a StackOverflow error and lead to a program crash.\n\nReporter: Alexis Challande, Trail of Bits Ecosystem Security Team \n\nAffected versions: This issue affects all versions of both the Java full and lite Protobuf runtimes, as well as Protobuf for Kotlin and JRuby, which themselves use the Java Protobuf runtime.\n\n### Severity\n[CVE-2024-7254](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2024-7254) **High** CVSS4.0 Score 8.7 (NOTE: there may be a delay in publication)\nThis is a potential Denial of Service. Parsing nested groups as unknown fields with DiscardUnknownFieldsParser or Java Protobuf Lite parser, or against Protobuf map fields, creates unbounded recursions that can be abused by an attacker.\n\n### Proof of Concept\nFor reproduction details, please refer to the unit tests (Protobuf Java [LiteTest](https://github.com/protocolbuffers/protobuf/blob/a037f28ff81ee45ebe008c64ab632bf5372242ce/java/lite/src/test/java/com/google/protobuf/LiteTest.java) and [CodedInputStreamTest](https://github.com/protocolbuffers/protobuf/blob/a037f28ff81ee45ebe008c64ab632bf5372242ce/java/core/src/test/java/com/google/protobuf/CodedInputStreamTest.java)) that identify the specific inputs that exercise this parsing weakness.\n\n### Remediation and Mitigation\nWe have been working diligently to address this issue and have released a mitigation that is available now. Please update to the latest available versions of the following packages:\n* protobuf-java (3.25.5, 4.27.5, 4.28.2)\n* protobuf-javalite (3.25.5, 4.27.5, 4.28.2)\n* protobuf-kotlin (3.25.5, 4.27.5, 4.28.2)\n* protobuf-kotlin-lite (3.25.5, 4.27.5, 4.28.2)\n* com-protobuf [JRuby gem only] (3.25.5, 4.27.5, 4.28.2)\n\n", + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" + }, + { + "type": "CVSS_V4", + "score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N" + } + ], + "affected": [ + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-java" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "3.25.5" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-javalite" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "3.25.5" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-kotlin" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "3.25.5" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-kotlin-lite" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "3.25.5" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "RubyGems", + "name": "google-protobuf" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "3.25.5" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "RubyGems", + "name": "google-protobuf" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "4.0.0.rc.1" + }, + { + "fixed": "4.27.5" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "RubyGems", + "name": "google-protobuf" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "4.28.0.rc.1" + }, + { + "fixed": "4.28.2" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-kotlin-lite" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "4.0.0.rc.1" + }, + { + "fixed": "4.27.5" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-kotlin-lite" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "4.28.0.rc.1" + }, + { + "fixed": "4.28.2" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-kotlin" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "4.0.0.rc.1" + }, + { + "fixed": "4.27.5" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-kotlin" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "4.28.0.rc.1" + }, + { + "fixed": "4.28.2" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-javalite" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "4.0.0.rc.1" + }, + { + "fixed": "4.27.5" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-javalite" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "4.28.0.rc.1" + }, + { + "fixed": "4.28.2" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-java" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "4.0.0.rc.1" + }, + { + "fixed": "4.27.5" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "Maven", + "name": "com.google.protobuf:protobuf-java" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "4.28.0.rc.1" + }, + { + "fixed": "4.28.2" + } + ] + } + ] + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/protocolbuffers/protobuf/security/advisories/GHSA-735f-pc8j-v9w8" + }, + { + "type": "ADVISORY", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-7254" + }, + { + "type": "WEB", + "url": "https://github.com/protocolbuffers/protobuf/commit/4728531c162f2f9e8c2ca1add713cfee2db6be3b" + }, + { + "type": "WEB", + "url": "https://github.com/protocolbuffers/protobuf/commit/850fcce9176e2c9070614dab53537760498c926b" + }, + { + "type": "WEB", + "url": "https://github.com/protocolbuffers/protobuf/commit/9a5f5fe752a20cbac2e722b06949ac985abdd534" + }, + { + "type": "WEB", + "url": "https://github.com/protocolbuffers/protobuf/commit/ac9fb5b4c71b0dd80985b27684e265d1f03abf46" + }, + { + "type": "WEB", + "url": "https://github.com/protocolbuffers/protobuf/commit/cc8b3483a5584b3301e3d43d17eb59704857ffaa" + }, + { + "type": "WEB", + "url": "https://github.com/protocolbuffers/protobuf/commit/d6c82fc55a76481c676f541a255571e8950bb8c3" + }, + { + "type": "PACKAGE", + "url": "https://github.com/protocolbuffers/protobuf" + } + ], + "database_specific": { + "cwe_ids": [ + "CWE-20" + ], + "severity": "HIGH", + "github_reviewed": true, + "github_reviewed_at": "2024-09-19T16:06:03Z", + "nvd_published_at": "2024-09-19T01:15:10Z" + } +} \ No newline at end of file diff --git a/advisories/unreviewed/2024/09/GHSA-5hc5-fxr9-5frc/GHSA-5hc5-fxr9-5frc.json b/advisories/unreviewed/2024/09/GHSA-5hc5-fxr9-5frc/GHSA-5hc5-fxr9-5frc.json deleted file mode 100644 index 9447c78b9fb..00000000000 --- a/advisories/unreviewed/2024/09/GHSA-5hc5-fxr9-5frc/GHSA-5hc5-fxr9-5frc.json +++ /dev/null @@ -1,38 +0,0 @@ -{ - "schema_version": "1.4.0", - "id": "GHSA-5hc5-fxr9-5frc", - "modified": "2024-09-19T00:31:32Z", - "published": "2024-09-19T00:31:32Z", - "aliases": [ - "CVE-2022-25770" - ], - "details": "Mautic allows you to update the application via an upgrade script.\n\nThe upgrade logic isn't shielded off correctly, which may lead to vulnerable situation.\n\nThis vulnerability is mitigated by the fact that Mautic needs to be installed in a certain way to be vulnerable.", - "severity": [ - { - "type": "CVSS_V3", - "score": "CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:C/C:N/I:H/A:H" - } - ], - "affected": [ - - ], - "references": [ - { - "type": "WEB", - "url": "https://github.com/mautic/mautic/security/advisories/GHSA-qf6m-6m4g-rmrc" - }, - { - "type": "ADVISORY", - "url": "https://nvd.nist.gov/vuln/detail/CVE-2022-25770" - } - ], - "database_specific": { - "cwe_ids": [ - "CWE-306" - ], - "severity": "HIGH", - "github_reviewed": false, - "github_reviewed_at": null, - "nvd_published_at": "2024-09-18T22:15:03Z" - } -} \ No newline at end of file