Publish Advisories

GHSA-93mq-9ffx-83m2
GHSA-94vh-gphv-8pm8
GHSA-c98h-7hp9-v9hq
GHSA-m4gq-fm9h-8q75
GHSA-pqq3-q84h-pj6x
GHSA-xmvv-w44w-j8wx
This commit is contained in:
advisory-database[bot]
2025-03-17 21:28:10 +00:00
parent 104aef9ef2
commit 8b72ba2b3c
6 changed files with 454 additions and 9 deletions
File diff suppressed because one or more lines are too long
@@ -0,0 +1,73 @@
{
"schema_version": "1.4.0",
"id": "GHSA-94vh-gphv-8pm8",
"modified": "2025-03-17T21:26:32Z",
"published": "2025-03-17T21:26:32Z",
"aliases": [
"CVE-2025-29787"
],
"summary": "zip Incorrectly Canonicalizes Paths during Archive Extraction Leading to Arbitrary File Write",
"details": "### Summary\n\n\nIn the archive extraction routine of affected versions of the `zip` crate, symbolic links earlier in the archive are allowed to be used for later files in the archive without validation of the final canonicalized path, allowing maliciously crafted archives to overwrite arbitrary files in the file system when extracted.\n\n### Details\n\nThis is a variant of the [zip-slip](https://github.com/snyk/zip-slip-vulnerability) vulnerability, we can make the extraction logic step outside of the target directory by creating a symlink to the parent directory and then extracting further files through that symlink.\n\nThe documentation of the [`::zip::read::ZipArchive::extract`] method is in my opinion implying this should not happen:\n\n> \"Paths are sanitized with ZipFile::enclosed_name.\" ...\n> [`::zip::read::FileOptions::enclosed_name`] ... is resistant to path-based exploits ... cant resolve to a path outside the current directory.\n\n\nMost archive software either decline to extract symlinks that traverse out of the directory or defer creation of symlinks after all files have been created to prevent unexpected behavior when later entries depend on earlier symbolic link entries.\n\n### PoC\n\nhttps://gist.github.com/eternal-flame-AD/bf71ef4f6828e741eb12ce7fd47b7b85\n\n### Impact\n\nUsers who extract untrusted archive files using the following high-level API method may be affected and critical files on the system may be overwritten with arbitrary file permissions, which can potentially lead to code execution.\n\n- zip::unstable::stream::ZipStreamReader::extract\n- zip::read::ZipArchive::extract",
"severity": [
{
"type": "CVSS_V4",
"score": "CVSS:4.0/AV:N/AC:H/AT:N/PR:L/UI:N/VC:L/VI:H/VA:N/SC:H/SI:H/SA:H"
}
],
"affected": [
{
"package": {
"ecosystem": "crates.io",
"name": "zip"
},
"ranges": [
{
"type": "ECOSYSTEM",
"events": [
{
"introduced": "1.3.0"
},
{
"fixed": "2.3.0"
}
]
}
]
}
],
"references": [
{
"type": "WEB",
"url": "https://github.com/zip-rs/zip2/security/advisories/GHSA-94vh-gphv-8pm8"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-29787"
},
{
"type": "WEB",
"url": "https://github.com/zip-rs/zip2/commit/a2e062f37066c3b12860a32eb1cb44856cfb7afe"
},
{
"type": "WEB",
"url": "https://gist.github.com/eternal-flame-AD/bf71ef4f6828e741eb12ce7fd47b7b85"
},
{
"type": "PACKAGE",
"url": "https://github.com/zip-rs/zip2"
},
{
"type": "WEB",
"url": "https://github.com/zip-rs/zip2/releases/tag/v2.3.0"
}
],
"database_specific": {
"cwe_ids": [
"CWE-22"
],
"severity": "HIGH",
"github_reviewed": true,
"github_reviewed_at": "2025-03-17T21:26:32Z",
"nvd_published_at": "2025-03-17T14:15:22Z"
}
}
File diff suppressed because one or more lines are too long
@@ -0,0 +1,64 @@
{
"schema_version": "1.4.0",
"id": "GHSA-m4gq-fm9h-8q75",
"modified": "2025-03-17T21:27:44Z",
"published": "2025-03-17T21:27:43Z",
"aliases": [
"CVE-2025-0495"
],
"summary": "buildx allows a possible credential leakage to telemetry endpoint",
"details": "### Impact\nSome cache backends allow configuring their credentials by setting secrets directly as attribute values in `cache-to/cache-from` configuration. If this was done by the user, these secure values could be captured together with OpenTelemetry trace as part of the arguments and flags for the traced CLI command. Passing tokens to Github cache backend via environment variables or using registry authentication is not affected.\n\nIf you passed a token value like this and use a custom OpenTelemetry collector for computing traces you should make sure that your traces are kept secure. OpenTelemetry traces are also saved in BuildKit daemon's history records.\n\n### Patches\nIssue has been fixed in Buildx v0.21.3 or newer.\n\n### Workarounds\nAvoid passing cache backend credentials with CLI arguments. Make sure access to traces and BuildKit history records is kept secure.",
"severity": [
{
"type": "CVSS_V4",
"score": "CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:P/VC:L/VI:N/VA:N/SC:H/SI:N/SA:N"
}
],
"affected": [
{
"package": {
"ecosystem": "Go",
"name": "github.com/docker/buildx"
},
"ranges": [
{
"type": "ECOSYSTEM",
"events": [
{
"introduced": "0"
},
{
"fixed": "0.21.3"
}
]
}
],
"database_specific": {
"last_known_affected_version_range": "<= 0.21.2"
}
}
],
"references": [
{
"type": "WEB",
"url": "https://github.com/docker/buildx/security/advisories/GHSA-m4gq-fm9h-8q75"
},
{
"type": "WEB",
"url": "https://github.com/docker/buildx/commit/18ccba072076ddbfb0aeedd6746d7719b0729b58"
},
{
"type": "PACKAGE",
"url": "https://github.com/docker/buildx"
}
],
"database_specific": {
"cwe_ids": [
"CWE-532"
],
"severity": "MODERATE",
"github_reviewed": true,
"github_reviewed_at": "2025-03-17T21:27:43Z",
"nvd_published_at": null
}
}
File diff suppressed because one or more lines are too long
@@ -1,28 +1,49 @@
{
"schema_version": "1.4.0",
"id": "GHSA-xmvv-w44w-j8wx",
"modified": "2025-03-17T15:31:50Z",
"modified": "2025-03-17T21:27:32Z",
"published": "2025-03-17T15:31:50Z",
"aliases": [
"CVE-2025-1398"
],
"summary": "Mattermost Desktop App allows the bypass of Transparency, Consent, and Control (TCC) via code injection",
"details": "Mattermost Desktop App versions <=5.10.0 explicitly declared unnecessary macOS entitlements which allows an attacker with remote access to bypass Transparency, Consent, and Control (TCC) via code injection.",
"severity": [
{
"type": "CVSS_V3",
"score": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N"
},
{
"type": "CVSS_V4",
"score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X"
}
],
"affected": [],
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "mattermost-desktop"
},
"ranges": [
{
"type": "ECOSYSTEM",
"events": [
{
"introduced": "0"
},
{
"fixed": "5.11.0"
}
]
}
]
}
],
"references": [
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-1398"
},
{
"type": "PACKAGE",
"url": "https://github.com/mattermost/desktop"
},
{
"type": "WEB",
"url": "https://mattermost.com/security-updates"
@@ -32,9 +53,9 @@
"cwe_ids": [
"CWE-426"
],
"severity": "CRITICAL",
"github_reviewed": false,
"github_reviewed_at": null,
"severity": "LOW",
"github_reviewed": true,
"github_reviewed_at": "2025-03-17T21:27:32Z",
"nvd_published_at": "2025-03-17T15:15:43Z"
}
}