Логотип exploitDog
Консоль
Логотип exploitDog

exploitDog

github логотип

GHSA-cg3c-245w-728m

Опубликовано: 04 апр. 2025
Источник: github
Github: Прошло ревью
CVSS3: 7.5

Описание

GraphQL query operations security can be bypassed

Summary

Using the Relay special node type you can bypass the configured security on an operation.

Details

Here is an example of how to apply security configurations for the GraphQL operations:

#[ApiResource( security: "is_granted('ROLE_USER')", operations: [ /* ... */ ], graphQlOperations: [ new Query(security: "is_granted('ROLE_USER')"), //... ], )] class Book { /* ... */ }

This indeed checks is_granted('ROLE_USER') as expected for a GraphQL query like the following:

‌query { book(id: "/books/1") { title } }

But the security check can be bypassed by using the node field (that is available by default) on the root query type like that:

‌query { node(id: "/books/1") { ... on Book { title } } }

This does not execute any security checks and can therefore be used to access any entity without restrictions by everyone that has access to the API.

Impact

Everyone using GraphQl with the security attribute. Not sure whereas this works with custom resolvers nor if this also applies on mutation.

Patched at https://github.com/api-platform/core/commit/60747cc8c2fb855798c923b5537888f8d0969568

Пакеты

Наименование

api-platform/graphql

composer
Затронутые версииВерсия исправления

>= 4.0.0-alpha.1, < 4.0.22

4.0.22

Наименование

api-platform/core

composer
Затронутые версииВерсия исправления

>= 4.0.0-alpha.1, < 4.0.22

4.0.22

Наименование

api-platform/graphql

composer
Затронутые версииВерсия исправления

< 3.4.17

3.4.17

Наименование

api-platform/core

composer
Затронутые версииВерсия исправления

< 3.4.17

3.4.17

Наименование

api-platform/graphql

composer
Затронутые версииВерсия исправления

>= 4.1.0-alpha.1, < 4.1.5

4.1.5

Наименование

api-platform/core

composer
Затронутые версииВерсия исправления

>= 4.1.0-alpha.1, < 4.1.5

4.1.5

EPSS

Процентиль: 25%
0.00083
Низкий

7.5 High

CVSS3

Дефекты

CWE-863

Связанные уязвимости

CVSS3: 7.5
nvd
10 месяцев назад

API Platform Core is a system to create hypermedia-driven REST and GraphQL APIs. Using the Relay special node type you can bypass the configured security on an operation. This vulnerability is fixed in 4.0.22 and 3.4.17.

EPSS

Процентиль: 25%
0.00083
Низкий

7.5 High

CVSS3

Дефекты

CWE-863