Publish GHSA-r5w7-f542-q2j4

This commit is contained in:
advisory-database[bot]
2025-01-28 20:39:20 +00:00
parent 51e8fbe8d0
commit 2b44485453
@@ -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
}
}