GHSA-gggm-66rh-pp98

Suggest an improvement
Source
https://github.com/advisories/GHSA-gggm-66rh-pp98
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2023/07/GHSA-gggm-66rh-pp98/GHSA-gggm-66rh-pp98.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-gggm-66rh-pp98
Aliases
Related
Published
2023-07-25T23:31:10Z
Modified
2023-11-08T04:13:08.370995Z
Severity
  • 5.7 (Medium) CVSS_V3 - CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:N/A:N CVSS Calculator
Summary
Incorrect Permission Checking for GraphQL Subscriptions
Details

Summary

CWE-200: Exposure of Sensitive Information to an Unauthorized Actor Access to information you should not have access to when the permissions rely on $CURRENT_USER for filtering.

Details

The permission filters (i.e. user_created IS $CURRENT_USER) are not properly checked when using GraphQL subscription resulting in unauthorized users getting event on their subscription which they should not be receiving according to the permissions. This can be any collection but out-of-the box the directus_users collection is configured with such a permissions filter allowing you to get updates for other users when changes happen.

An example:

subscription {
  directus_users_mutated {
    event
    data {
      id
      last_access
      last_page
    }
  }
}

Patches

https://github.com/directus/directus/pull/19155

Workarounds

Disable GraphQL Subscriptions

References

Database specific
{
    "nvd_published_at": "2023-07-25T23:15:10Z",
    "severity": "MODERATE",
    "github_reviewed_at": "2023-07-25T23:31:10Z",
    "github_reviewed": true,
    "cwe_ids": [
        "CWE-200",
        "CWE-863"
    ]
}
References

Affected packages

npm / directus

Package

Affected ranges

Type
SEMVER
Events
Introduced
10.3
Fixed
10.5.0