Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
fxa-shared
Advanced tools
supportedLanguages.json
is the shared list of all supported locales across FxA
oauth.scopes
provides shared logic for validating and checking OAuth scopes.
Detailed documentation on the details of FxA OAuth scope values is available from the fxa-oauth-server. This library provides some convenient APIs for working with them according to the rules described there.
Given a string containing scopes,
you can parse it into a ScopeSet
object
from either a raw space-delimited string:
let s1 = oauth.scopes.fromString('profile:write basket');
Or directly from a url-encoded string:
let s2 = oauth.scopes.fromURLEncodedString('profile%3Aemail+profile%3Adisplay_name+clients');
Once you have a ScopeSet
object,
you can check whether it
is sufficient to wholly imply another set:
s1.contains('profile:email:write'); // true, implied by 'profile:write'
s2.contains('profile:email:write'); // false
s1.contains('profile:email:write clients'); // false, 'clients' is not in `s1`
Or whether it has any scope values in common with another set:
s1.intersects('profile:email:write clients'); // true, 'profile:email:write' is common
s2.intersects(s1); // true, 'profile:email' is common
s2.intersects('clients:write basket'); // false, no members in common
You can filter it down to only the scope values implied by another scope:
let s3 = oauth.scope.fromString('profile:email clients:abcd'));
s3.filtered(s1); // 'profile:email'
s3.filtered(s2); // 'profile:email clients:abcd'
Or you can find out what values in the set are not implied by another scope:
s3.difference(s1); // 'clients:abcd'
s3.difference(s2); // the empty set
s2.difference(s3); // 'profile:display_name clients'
You can also combine multiple sets of scopes, either by generating the union as a new set:
s1.union(s2); // 'profile:write basket clients'
Or by building up the new set in place:
let allScopes = scopes.fromArray([]);
allScopes.add(s1); // now "profile:write basket"
allScopes.add(s2); // now "profile:write basket clients"
allScopes.add(s3); // now "profile:write basket clients"
Install the np tool, run np [new_version_here]
.
FAQs
Shared module for FxA repositories
We found that fxa-shared demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 6 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.