Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
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
The npm package fxa-shared receives a total of 14 weekly downloads. As such, fxa-shared popularity was classified as not popular.
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
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.