From cdaf43a3c7cf7d886e493da8b97fb7d6ef7dd590 Mon Sep 17 00:00:00 2001 From: "advisory-database[bot]" <45398580+advisory-database[bot]@users.noreply.github.com> Date: Mon, 7 Apr 2025 19:02:23 +0000 Subject: [PATCH] Publish Advisories GHSA-3j43-9v8v-cp3f GHSA-84m6-5m72-45fp --- .../GHSA-3j43-9v8v-cp3f.json | 82 +++++++++++++++++++ .../GHSA-84m6-5m72-45fp.json | 82 +++++++++++++++++++ 2 files changed, 164 insertions(+) create mode 100644 advisories/github-reviewed/2025/04/GHSA-3j43-9v8v-cp3f/GHSA-3j43-9v8v-cp3f.json create mode 100644 advisories/github-reviewed/2025/04/GHSA-84m6-5m72-45fp/GHSA-84m6-5m72-45fp.json diff --git a/advisories/github-reviewed/2025/04/GHSA-3j43-9v8v-cp3f/GHSA-3j43-9v8v-cp3f.json b/advisories/github-reviewed/2025/04/GHSA-3j43-9v8v-cp3f/GHSA-3j43-9v8v-cp3f.json new file mode 100644 index 00000000000..683da76527e --- /dev/null +++ b/advisories/github-reviewed/2025/04/GHSA-3j43-9v8v-cp3f/GHSA-3j43-9v8v-cp3f.json @@ -0,0 +1,82 @@ +{ + "schema_version": "1.4.0", + "id": "GHSA-3j43-9v8v-cp3f", + "modified": "2025-04-07T19:00:30Z", + "published": "2025-04-07T19:00:30Z", + "aliases": [], + "summary": "Apollo Router Query Validation Vulnerable to Excessive Resource Consumption via Named Fragment Processing", + "details": "# Impact\n\n## Summary\n\nA vulnerability in Apollo Router's usage of Apollo Compiler allowed queries with deeply nested and reused named fragments to be prohibitively expensive to validate. This could lead to excessive resource consumption and denial of service.\n\n## Details\n\nNamed fragments were being processed once per fragment spread in some cases during query validation, leading to exponential resource usage when deeply nested and reused fragments were involved.\n\n## Fix/Mitigation\n\nApollo Router's usage of Apollo Compiler has been updated so that validation logic processes each named fragment only once, preventing redundant traversal.\n\n# Patches\n\nThis has been remediated in `apollo-router` versions 1.61.2 and 2.1.1.\n\n# Workarounds\nThe only known workaround is \"Safelisting with IDs only\" per [Safelisting with Persisted Queries - Apollo GraphQL Docs](https://www.apollographql.com/docs/graphos/routing/security/persisted-queries#router-security-levels). The \"Safelisting\" security level is not sufficient, since that level allows freeform GraphQL queries to be sent to Apollo Router.\n\n# References \n[Query Planning Documentation](https://www.apollographql.com/docs/graphos/reference/federation/query-plans)\n\n## Acknowledgements\nWe appreciate the efforts of the security community in identifying and improving the performance and security of query validation mechanisms.", + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" + } + ], + "affected": [ + { + "package": { + "ecosystem": "crates.io", + "name": "apollo-router" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.61.2" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "crates.io", + "name": "apollo-router" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "2.0.0-alpha.0" + }, + { + "fixed": "2.1.1" + } + ] + } + ] + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/apollographql/router/security/advisories/GHSA-3j43-9v8v-cp3f" + }, + { + "type": "WEB", + "url": "https://github.com/apollographql/router/commit/ab6675a63174715ea6ff50881fc957831d4e9564" + }, + { + "type": "WEB", + "url": "https://github.com/apollographql/router/commit/bba032e183b861348a466d3123c7137a1ae18952" + }, + { + "type": "PACKAGE", + "url": "https://github.com/apollographql/router" + } + ], + "database_specific": { + "cwe_ids": [ + "CWE-770" + ], + "severity": "HIGH", + "github_reviewed": true, + "github_reviewed_at": "2025-04-07T19:00:30Z", + "nvd_published_at": null + } +} \ No newline at end of file diff --git a/advisories/github-reviewed/2025/04/GHSA-84m6-5m72-45fp/GHSA-84m6-5m72-45fp.json b/advisories/github-reviewed/2025/04/GHSA-84m6-5m72-45fp/GHSA-84m6-5m72-45fp.json new file mode 100644 index 00000000000..fe867e9930b --- /dev/null +++ b/advisories/github-reviewed/2025/04/GHSA-84m6-5m72-45fp/GHSA-84m6-5m72-45fp.json @@ -0,0 +1,82 @@ +{ + "schema_version": "1.4.0", + "id": "GHSA-84m6-5m72-45fp", + "modified": "2025-04-07T18:59:21Z", + "published": "2025-04-07T18:59:21Z", + "aliases": [], + "summary": "Apollo Router Operation Limits Vulnerable to Bypass via Integer Overflow", + "details": "# Impact\n\n## Summary\n\nA vulnerability in Apollo Router allowed certain queries to bypass configured operation limits, specifically due to integer overflow.\n\n## Details\n\nThe operation limits plugin uses unsigned 32-bit integers to track limit counters (e.g. for a query's height). If a counter exceeded the maximum value for this data type (4,294,967,295), it wrapped around to 0, unintentionally allowing queries to bypass configured thresholds. This could occur for large queries if the payload limit were sufficiently increased, but could also occur for small queries with deeply nested and reused named fragments.\n\n## Fix/Mitigation\n\nLogic was updated to ensure counter overflow is handled correctly and does not wrap around to 0.\n\n# Patches\n\nThis has been remediated in `apollo-router` versions 1.61.2 and 2.1.1.\n\n# Workarounds\n\nThe only known workaround is \"Safelisting\" or \"Safelisting with IDs only\" per [Safelisting with Persisted Queries - Apollo GraphQL Docs](https://www.apollographql.com/docs/graphos/routing/security/persisted-queries#router-security-levels).\n\n## Acknowledgements\n\nWe appreciate the efforts of the security community in identifying and improving the performance and security of operation limiting mechanisms.", + "severity": [ + { + "type": "CVSS_V3", + "score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H" + } + ], + "affected": [ + { + "package": { + "ecosystem": "crates.io", + "name": "apollo-router" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "0" + }, + { + "fixed": "1.61.2" + } + ] + } + ] + }, + { + "package": { + "ecosystem": "crates.io", + "name": "apollo-router" + }, + "ranges": [ + { + "type": "ECOSYSTEM", + "events": [ + { + "introduced": "2.0.0-alpha.0" + }, + { + "fixed": "2.1.1" + } + ] + } + ] + } + ], + "references": [ + { + "type": "WEB", + "url": "https://github.com/apollographql/router/security/advisories/GHSA-84m6-5m72-45fp" + }, + { + "type": "WEB", + "url": "https://github.com/apollographql/router/commit/ab6675a63174715ea6ff50881fc957831d4e9564" + }, + { + "type": "WEB", + "url": "https://github.com/apollographql/router/commit/bba032e183b861348a466d3123c7137a1ae18952" + }, + { + "type": "PACKAGE", + "url": "https://github.com/apollographql/router" + } + ], + "database_specific": { + "cwe_ids": [ + "CWE-190" + ], + "severity": "HIGH", + "github_reviewed": true, + "github_reviewed_at": "2025-04-07T18:59:21Z", + "nvd_published_at": null + } +} \ No newline at end of file