We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
For sensitive data scenarios, legal requirements may restrict access only to qualified individuals (e.g., credentialed EU researchers).
There lacks a secure default for when the credentials configuration is not explicitly defined, potentially allowing unintended access.
credentials
Enhance the credentials configuration by adding an allowAll field and implementing secure defaults:
allowAll
allow
deny
false
{ "credentials": { "allowAll": false, "allow": [], "deny": [] } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Enhanced Security Defaults for Credential-based Access Control
Issue
For sensitive data scenarios, legal requirements may restrict access only to qualified individuals (e.g., credentialed EU researchers).
There lacks a secure default for when the
credentials
configuration is not explicitly defined, potentially allowing unintended access.Proposed Change
Enhance the
credentials
configuration by adding anallowAll
field and implementing secure defaults:allowAll
Field: A boolean to explicitly allow or deny access to everyone if no specificallow
ordeny
credentials are defined.allowAll
:false
credentials
object is undefined or ifallowAll
is false/undefined and noallow
credentials are specified, no access is granted.allow
anddeny
policies overrule theallowAll
configurationExample Object with Default Secure Settings
The text was updated successfully, but these errors were encountered: