From 9f50774f30ee83ae652b9dbbb319de5d547c0b06 Mon Sep 17 00:00:00 2001 From: "advisory-database[bot]" <45398580+advisory-database[bot]@users.noreply.github.com> Date: Wed, 5 Jun 2024 16:55:24 +0000 Subject: [PATCH] Publish Advisories GHSA-cr6f-gf5w-vhrc GHSA-g762-h86w-8749 GHSA-mh3r-6cp5-hc2j --- .../GHSA-cr6f-gf5w-vhrc.json | 2 +- .../GHSA-g762-h86w-8749.json | 66 +++++++++++++++++++ .../GHSA-mh3r-6cp5-hc2j.json | 53 +++++++++++++++ 3 files changed, 120 insertions(+), 1 deletion(-) create mode 100644 advisories/github-reviewed/2024/06/GHSA-g762-h86w-8749/GHSA-g762-h86w-8749.json create mode 100644 advisories/github-reviewed/2024/06/GHSA-mh3r-6cp5-hc2j/GHSA-mh3r-6cp5-hc2j.json diff --git a/advisories/github-reviewed/2024/04/GHSA-cr6f-gf5w-vhrc/GHSA-cr6f-gf5w-vhrc.json b/advisories/github-reviewed/2024/04/GHSA-cr6f-gf5w-vhrc/GHSA-cr6f-gf5w-vhrc.json index 7a61e8249dc..f8500595494 100644 --- a/advisories/github-reviewed/2024/04/GHSA-cr6f-gf5w-vhrc/GHSA-cr6f-gf5w-vhrc.json +++ b/advisories/github-reviewed/2024/04/GHSA-cr6f-gf5w-vhrc/GHSA-cr6f-gf5w-vhrc.json @@ -1,7 +1,7 @@ { "schema_version": "1.4.0", "id": "GHSA-cr6f-gf5w-vhrc", - "modified": "2024-06-03T20:38:42Z", + "modified": "2024-06-05T16:54:51Z", "published": "2024-04-06T06:31:08Z", "aliases": [ diff --git a/advisories/github-reviewed/2024/06/GHSA-g762-h86w-8749/GHSA-g762-h86w-8749.json b/advisories/github-reviewed/2024/06/GHSA-g762-h86w-8749/GHSA-g762-h86w-8749.json new file mode 100644 index 00000000000..6cf25abcb45 --- /dev/null +++ b/advisories/github-reviewed/2024/06/GHSA-g762-h86w-8749/GHSA-g762-h86w-8749.json @@ -0,0 +1,66 @@ +{ + "schema_version": "1.4.0", + "id": "GHSA-g762-h86w-8749", + "modified": "2024-06-05T16:53:49Z", + "published": "2024-06-05T16:53:49Z", + "aliases": [ + "CVE-2024-36121" + ], + "summary": "BoringSSLAEADContext in Netty Repeats Nonces", + "details": "### Summary\nBoringSSLAEADContext keeps track of how many OHTTP responses have been sent and uses this sequence number to calculate the appropriate nonce to use with the encryption algorithm. \nUnfortunately, two separate errors combine which would allow an attacker to cause the sequence number to overflow and thus the nonce to repeat.\n\n### Details\n1. There is no overflow detection or enforcement of the maximum sequence value. (This is a missed requirement from the draft Chunked Oblivious OHTTP RFC and so should be inherited from the HPKE RFC 9180, Section 5.2).\n2. The sequence number (seq) is stored as 32-bit int which is relatively easy to overflow.\n\nhttps://github.com/netty/netty-incubator-codec-ohttp/blob/1ddadb6473cd3be5491d114431ed4c1a9f316001/codec-ohttp-hpke-classes-boringssl/src/main/java/io/netty/incubator/codec/hpke/boringssl/BoringSSLAEADContext.java#L112-L114\n\n### Impact\nIf the BoringSSLAEADContext is used to encrypt more than 2^32 messages then the AES-GCM nonce will repeat.\nRepeating a nonce with AES-GCM results in both confidentiality and integrity compromise of data encrypted with the associated key.\n", + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:L/I:H/A:N" + } + ], + "affected": [ + { + "package": { + "ecosystem": "Maven", + "name": "io.netty.incubator:netty-incubator-codec-ohttp" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0.0.3.Final" + }, + { + "fixed": "0.0.11.Final" + } + ] + } + ] + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/netty/netty-incubator-codec-ohttp/security/advisories/GHSA-g762-h86w-8749" + }, + { + "type": "ADVISORY", + "url": "https://nvd.nist.gov/vuln/detail/CVE-2024-36121" + }, + { + "type": "PACKAGE", + "url": "https://github.com/netty/netty-incubator-codec-ohttp" + }, + { + "type": "WEB", + "url": "https://github.com/netty/netty-incubator-codec-ohttp/blob/1ddadb6473cd3be5491d114431ed4c1a9f316001/codec-ohttp-hpke-classes-boringssl/src/main/java/io/netty/incubator/codec/hpke/boringssl/BoringSSLAEADContext.java#L112-L114" + } + ], + "database_specific": { + "cwe_ids": [ + "CWE-190", + "CWE-200" + ], + "severity": "MODERATE", + "github_reviewed": true, + "github_reviewed_at": "2024-06-05T16:53:49Z", + "nvd_published_at": "2024-06-04T22:15:10Z" + } +} \ No newline at end of file diff --git a/advisories/github-reviewed/2024/06/GHSA-mh3r-6cp5-hc2j/GHSA-mh3r-6cp5-hc2j.json b/advisories/github-reviewed/2024/06/GHSA-mh3r-6cp5-hc2j/GHSA-mh3r-6cp5-hc2j.json new file mode 100644 index 00000000000..bb06b253c41 --- /dev/null +++ b/advisories/github-reviewed/2024/06/GHSA-mh3r-6cp5-hc2j/GHSA-mh3r-6cp5-hc2j.json @@ -0,0 +1,53 @@ +{ + "schema_version": "1.4.0", + "id": "GHSA-mh3r-6cp5-hc2j", + "modified": "2024-06-05T16:55:00Z", + "published": "2024-06-05T16:55:00Z", + "aliases": [ + + ], + "summary": "Authentication Bypass in TYPO3 Frontend", + "details": "Due to late TCA initialization the authentication service fails to restrict frontend user according to the validation rules. Therefore it is possible to authenticate restricted (e.g. disabled) frontend users.", + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N" + } + ], + "affected": [ + { + "package": { + "ecosystem": "Packagist", + "name": "typo3/cms" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.2.0" + }, + { + "fixed": "8.6.1" + } + ] + } + ] + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/FriendsOfPHP/security-advisories/blob/master/typo3/cms/2017-02-28-1.yaml" + } + ], + "database_specific": { + "cwe_ids": [ + + ], + "severity": "MODERATE", + "github_reviewed": true, + "github_reviewed_at": "2024-06-05T16:55:00Z", + "nvd_published_at": null + } +} \ No newline at end of file