From 2b44485453909b4c6865dfbc7e760e6d55272634 Mon Sep 17 00:00:00 2001 From: "advisory-database[bot]" <45398580+advisory-database[bot]@users.noreply.github.com> Date: Tue, 28 Jan 2025 20:39:20 +0000 Subject: [PATCH] Publish GHSA-r5w7-f542-q2j4 --- .../GHSA-r5w7-f542-q2j4.json | 253 ++++++++++++++++++ 1 file changed, 253 insertions(+) create mode 100644 advisories/github-reviewed/2025/01/GHSA-r5w7-f542-q2j4/GHSA-r5w7-f542-q2j4.json diff --git a/advisories/github-reviewed/2025/01/GHSA-r5w7-f542-q2j4/GHSA-r5w7-f542-q2j4.json b/advisories/github-reviewed/2025/01/GHSA-r5w7-f542-q2j4/GHSA-r5w7-f542-q2j4.json new file mode 100644 index 00000000000..440e9e816c4 --- /dev/null +++ b/advisories/github-reviewed/2025/01/GHSA-r5w7-f542-q2j4/GHSA-r5w7-f542-q2j4.json @@ -0,0 +1,253 @@ +{ + "schema_version": "1.4.0", + "id": "GHSA-r5w7-f542-q2j4", + "modified": "2025-01-28T20:37:49Z", + "published": "2025-01-28T20:37:26Z", + "aliases": [], + "summary": "Potential DoS when using ContextLines integration", + "details": "### Impact\nThe [ContextLines integration](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/contextlines/) uses readable streams to more efficiently use memory when reading files. The ContextLines integration is used to attach source context to outgoing events.\n\nThe stream was not explicitly closed after use. This could lead to excessive amounts of file handles open on the system and potentially lead to a Denial of Service (DoS).\n\nThe ContextLines integration is enabled by default in the Node SDK (`@sentry/node`) and SDKs that run in Node.js environments (`@sentry/astro`, `@sentry/aws-serverless`, `@sentry/bun`, `@sentry/google-cloud-serverless`, `@sentry/nestjs`, `@sentry/nextjs`, `@sentry/nuxt`, `@sentry/remix`, `@sentry/solidstart`, `@sentry/sveltekit`).\n\n### Patches\n\nUsers should upgrade to version `8.49.0` or higher.\n\n### Workarounds\n\nTo remediate this issue in affected versions without upgrading to version `8.49.0` and above you can disable the ContextLines integration. See the [docs](https://docs.sentry.io/platforms/javascript/guides/node/configuration/integrations/#removing-a-default-integration) for more details.\n\n```js\nSentry.init({\n // ...\n integrations: function (integrations) {\n // integrations will be all default integrations\n return integrations.filter(function (integration) {\n return integration.name !== \"ContextLines\";\n });\n },\n});\n```\n\nIf you disable the ContextLines integration, you will lose source context on your error events.\n\n### References\n- Reported issue: https://github.com/getsentry/sentry-javascript/issues/14892\n- PR Fix: https://github.com/getsentry/sentry-javascript/pull/14997\n", + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L" + } + ], + "affected": [ + { + "package": { + "ecosystem": "npm", + "name": "@sentry/node" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.10.0" + }, + { + "fixed": "8.49.0" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "npm", + "name": "@sentry/astro" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.10.0" + }, + { + "fixed": "8.49.0" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "npm", + "name": "@sentry/aws-serverless" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.10.0" + }, + { + "fixed": "8.49.0" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "npm", + "name": "@sentry/bun" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.10.0" + }, + { + "fixed": "8.49.0" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "npm", + "name": "@sentry/google-cloud-serverless" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.10.0" + }, + { + "fixed": "8.49.0" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "npm", + "name": "@sentry/nestjs" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.10.0" + }, + { + "fixed": "8.49.0" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "npm", + "name": "@sentry/nextjs" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.10.0" + }, + { + "fixed": "8.49.0" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "npm", + "name": "@sentry/nuxt" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.10.0" + }, + { + "fixed": "8.49.0" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "npm", + "name": "@sentry/remix" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.10.0" + }, + { + "fixed": "8.49.0" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "npm", + "name": "@sentry/solidstart" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.10.0" + }, + { + "fixed": "8.49.0" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "npm", + "name": "@sentry/sveltekit" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "8.10.0" + }, + { + "fixed": "8.49.0" + } + ] + } + ] + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/getsentry/sentry-javascript/security/advisories/GHSA-r5w7-f542-q2j4" + }, + { + "type": "WEB", + "url": "https://github.com/getsentry/sentry-javascript/issues/14892" + }, + { + "type": "WEB", + "url": "https://github.com/getsentry/sentry-javascript/pull/14997" + }, + { + "type": "PACKAGE", + "url": "https://github.com/getsentry/sentry-javascript" + } + ], + "database_specific": { + "cwe_ids": [ + "CWE-774" + ], + "severity": "LOW", + "github_reviewed": true, + "github_reviewed_at": "2025-01-28T20:37:26Z", + "nvd_published_at": null + } +} \ No newline at end of file