Publish Advisories

GHSA-392c-vjfv-h7wr
GHSA-3hp7-4qq4-v5c6
GHSA-77jg-cpw9-73vg
GHSA-85p4-q357-72h9
GHSA-8v4w-jr33-4rh3
GHSA-fccv-jmmp-qg76
GHSA-fgpw-4w69-j256
GHSA-v94h-hvhg-mf9h
GHSA-vv65-fjfj-4736
This commit is contained in:
advisory-database[bot]
2025-02-13 19:26:57 +00:00
parent 77b7f4e2bb
commit 4da9547a44
9 changed files with 23 additions and 18 deletions
@@ -1,12 +1,12 @@
{
"schema_version": "1.4.0",
"id": "GHSA-392c-vjfv-h7wr",
"modified": "2024-01-10T19:17:39Z",
"modified": "2025-02-13T19:25:31Z",
"published": "2023-11-27T12:30:55Z",
"withdrawn": "2024-01-10T19:16:30Z",
"aliases": [],
"summary": "Duplicate Advisory: Apache Superset - Elevation of Privilege",
"details": "### Duplicate Advisory\nThis advisory has been withdrawn because it is a duplicate of GHSA-f678-j579-4xf5. This link is maintained to preserve external references.\n\n### Original Description\n\nImproper authorization check and possible privilege escalation on Apache Superset up to but excluding 2.1.2. Using the default examples database connection that allows access to both the examples schema and Apache Superset's metadata database, an attacker using a specially crafted CTE SQL statement could change data on the metadata database. This weakness could result on tampering with the authentication/authorization data.\n\n",
"details": "### Duplicate Advisory\nThis advisory has been withdrawn because it is a duplicate of GHSA-f678-j579-4xf5. This link is maintained to preserve external references.\n\n### Original Description\n\nImproper authorization check and possible privilege escalation on Apache Superset up to but excluding 2.1.2. Using the default examples database connection that allows access to both the examples schema and Apache Superset's metadata database, an attacker using a specially crafted CTE SQL statement could change data on the metadata database. This weakness could result on tampering with the authentication/authorization data.",
"severity": [
{
"type": "CVSS_V3",
@@ -1,13 +1,13 @@
{
"schema_version": "1.4.0",
"id": "GHSA-3hp7-4qq4-v5c6",
"modified": "2023-12-05T21:57:27Z",
"modified": "2025-02-13T19:25:40Z",
"published": "2023-11-28T18:30:23Z",
"aliases": [
"CVE-2023-42504"
],
"summary": "Apache Superset Allocation of Resources Without Limits or Throttling vulnerability",
"details": "An authenticated malicious user could initiate multiple concurrent requests, each requesting multiple dashboard exports, leading to a possible denial of service.\n\nThis issue affects Apache Superset: before 3.0.0\n\n",
"details": "An authenticated malicious user could initiate multiple concurrent requests, each requesting multiple dashboard exports, leading to a possible denial of service.\n\nThis issue affects Apache Superset: before 3.0.0",
"severity": [
{
"type": "CVSS_V3",
@@ -1,13 +1,13 @@
{
"schema_version": "1.4.0",
"id": "GHSA-77jg-cpw9-73vg",
"modified": "2023-12-05T23:04:20Z",
"modified": "2025-02-13T19:25:43Z",
"published": "2023-11-30T12:30:18Z",
"aliases": [
"CVE-2023-49733"
],
"summary": "Apache Cocoon Improper Restriction of XML External Entity Reference vulnerability",
"details": "Improper Restriction of XML External Entity Reference vulnerability in Apache Cocoon. This issue affects Apache Cocoon: from 2.2.0 before 2.3.0.\n\nUsers are recommended to upgrade to version 2.3.0, which fixes the issue.\n\n",
"details": "Improper Restriction of XML External Entity Reference vulnerability in Apache Cocoon. This issue affects Apache Cocoon: from 2.2.0 before 2.3.0.\n\nUsers are recommended to upgrade to version 2.3.0, which fixes the issue.",
"severity": [
{
"type": "CVSS_V3",
@@ -1,14 +1,19 @@
{
"schema_version": "1.4.0",
"id": "GHSA-85p4-q357-72h9",
"modified": "2023-11-27T22:50:42Z",
"modified": "2025-02-13T19:26:18Z",
"published": "2023-11-23T12:30:23Z",
"aliases": [
"CVE-2023-43123"
],
"summary": "Apache Storm Local Information Disclosure Vulnerability in Storm-core on Unix-Like systems due temporary files ",
"details": "On unix-like systems, the temporary directory is shared between all user. As such, writing to this directory using APIs that do not explicitly set the file/directory permissions can lead to information disclosure. Of note, this does not impact modern MacOS Operating Systems.\n\nThe method File.createTempFile on unix-like systems creates a file with predefined name (so easily identifiable) and by default will create this file with the permissions -rw-r--r--. Thus, if sensitive information is written to this file, other local users can read this information.\n\nFile.createTempFile(String, String) will create a temporary file in the system temporary directory if the 'java.io.tmpdir' system property is not explicitly set. \n\nThis affects the class  https://github.com/apache/storm/blob/master/storm-core/src/jvm/org/apache/storm/utils/TopologySpoutLag.java#L99  and was introduced by  https://issues.apache.org/jira/browse/STORM-3123 \n\nIn practice, this has a very limited impact as this class is used only if ui.disable.spout.lag.monitoring\n\n is set to false, but its value is true by default.\nMoreover, the temporary file gets deleted soon after its creation.\n\nThe solution is to use  Files.createTempFile https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/nio/file/Files.html#createTempFile(java.lang.String,java.lang.String,java.nio.file.attribute.FileAttribute...)  instead.\n\nWe recommend that all users upgrade to the latest version of Apache Storm.\n\n",
"severity": [],
"details": "On unix-like systems, the temporary directory is shared between all user. As such, writing to this directory using APIs that do not explicitly set the file/directory permissions can lead to information disclosure. Of note, this does not impact modern MacOS Operating Systems.\n\nThe method File.createTempFile on unix-like systems creates a file with predefined name (so easily identifiable) and by default will create this file with the permissions -rw-r--r--. Thus, if sensitive information is written to this file, other local users can read this information.\n\nFile.createTempFile(String, String) will create a temporary file in the system temporary directory if the 'java.io.tmpdir' system property is not explicitly set. \n\nThis affects the class  https://github.com/apache/storm/blob/master/storm-core/src/jvm/org/apache/storm/utils/TopologySpoutLag.java#L99  and was introduced by  https://issues.apache.org/jira/browse/STORM-3123 \n\nIn practice, this has a very limited impact as this class is used only if ui.disable.spout.lag.monitoring\n\n is set to false, but its value is true by default.\nMoreover, the temporary file gets deleted soon after its creation.\n\nThe solution is to use  Files.createTempFile https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/nio/file/Files.html#createTempFile(java.lang.String,java.lang.String,java.nio.file.attribute.FileAttribute...)  instead.\n\nWe recommend that all users upgrade to the latest version of Apache Storm.",
"severity": [
{
"type": "CVSS_V3",
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N"
}
],
"affected": [
{
"package": {
@@ -68,7 +73,7 @@
"cwe_ids": [
"CWE-200"
],
"severity": "LOW",
"severity": "MODERATE",
"github_reviewed": true,
"github_reviewed_at": "2023-11-24T16:53:46Z",
"nvd_published_at": "2023-11-23T10:15:07Z"
@@ -1,13 +1,13 @@
{
"schema_version": "1.4.0",
"id": "GHSA-8v4w-jr33-4rh3",
"modified": "2023-12-05T22:59:30Z",
"modified": "2025-02-13T19:25:41Z",
"published": "2023-11-30T09:30:32Z",
"aliases": [
"CVE-2022-45135"
],
"summary": "Apache Cocoon SQL Injection vulnerability",
"details": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Apache Cocoon. This issue affects Apache Cocoon: from 2.2.0 before 2.3.0.\n\nUsers are recommended to upgrade to version 2.3.0, which fixes the issue.\n\n",
"details": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Apache Cocoon. This issue affects Apache Cocoon: from 2.2.0 before 2.3.0.\n\nUsers are recommended to upgrade to version 2.3.0, which fixes the issue.",
"severity": [
{
"type": "CVSS_V3",
@@ -1,7 +1,7 @@
{
"schema_version": "1.4.0",
"id": "GHSA-fccv-jmmp-qg76",
"modified": "2024-07-12T19:17:26Z",
"modified": "2025-02-13T19:25:36Z",
"published": "2023-11-28T18:30:23Z",
"aliases": [
"CVE-2023-46589"
@@ -1,13 +1,13 @@
{
"schema_version": "1.4.0",
"id": "GHSA-fgpw-4w69-j256",
"modified": "2023-11-28T23:29:04Z",
"modified": "2025-02-13T19:25:38Z",
"published": "2023-11-28T18:30:23Z",
"aliases": [
"CVE-2023-42505"
],
"summary": "Apache Superset Exposure of Sensitive Information to an Unauthorized Actor vulnerability",
"details": "An authenticated user with read permissions on database connections metadata could potentially access sensitive information such as the connection's username.\n\nThis issue affects Apache Superset before 3.0.0.\n\n",
"details": "An authenticated user with read permissions on database connections metadata could potentially access sensitive information such as the connection's username.\n\nThis issue affects Apache Superset before 3.0.0.",
"severity": [
{
"type": "CVSS_V3",
@@ -1,7 +1,7 @@
{
"schema_version": "1.4.0",
"id": "GHSA-v94h-hvhg-mf9h",
"modified": "2024-03-14T19:47:51Z",
"modified": "2025-02-13T19:25:35Z",
"published": "2023-11-28T09:30:27Z",
"aliases": [
"CVE-2023-34053"
@@ -1,13 +1,13 @@
{
"schema_version": "1.4.0",
"id": "GHSA-vv65-fjfj-4736",
"modified": "2023-11-28T20:53:25Z",
"modified": "2025-02-13T19:25:33Z",
"published": "2023-11-27T12:30:55Z",
"aliases": [
"CVE-2023-42501"
],
"summary": "Apache Superset has Incorrect Default Permissions",
"details": "Unnecessary read permissions within the Gamma role would allow authenticated users to read configured CSS templates and annotations.\nThis issue affects Apache Superset: before 2.1.2.\nUsers should upgrade to version or above 2.1.2 and run `superset init` to reconstruct the Gamma role or remove `can_read` permission from the mentioned resources.\n\n",
"details": "Unnecessary read permissions within the Gamma role would allow authenticated users to read configured CSS templates and annotations.\nThis issue affects Apache Superset: before 2.1.2.\nUsers should upgrade to version or above 2.1.2 and run `superset init` to reconstruct the Gamma role or remove `can_read` permission from the mentioned resources.",
"severity": [
{
"type": "CVSS_V3",