Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
oauth2-client-ts
Advanced tools
An exstensible OAuth 2.0, standard compliant client library for Node.js and the Web.
An exstensible OAuth 2.0, standard compliant client library for Node.js and the Web. Also supports the Bearer Token Usage and Token Introspection standards.
Start by creating and configuring your OAuth 2.0 client.
import * as OAuth2 from 'oauth2-client-ts';
const client = new OAuth2.Client({
credentials: new OAuth2.ClientCredentials('myClientId', 'myClientSecret'),
tokenEndpoint: 'https://www.example.com/auth/token',
authorizationEndpoint: 'https://www.example.com/auth/authorize',
});
You can then use one of the flows described in the OAuth 2.0 standard.
const flow = client.startResourceOwnerPasswordCredentialsFlow();
const token = await flow.getToken(new OAuth2.ResourceOwnerPasswordCredentialsGrant('myUsername', 'myPassword'), 'scope.read scope.write'); // Scope is optional.
const flow = client.startClientCredentialsFlow();
const token = await flow.getToken('scope.read scope.write'); // Scope is optional.
// Perform the "Refresh Token" OAuth 2.0 flow.
const flow = client.startRefreshTokenFlow();
const token = await flow.getToken(new OAuth2.RefreshTokenGrant('ey.myRefresh.token'), 'scope.read scope.write'); // Scope is optional.
Import the Bearer Token Usage extension.
import 'oauth2-client-ts/dist/extensions/bearer_token_usage';
You can then use the convenience functions on the TokenCredentials
type.
// Returns key-value pairs for an authorized JSON HTTP request body.
token.getBodyParameters();
// Returns key-value pairs for an HTTP request's query parameters.
token.getQueryParameters();
// Returns key-value pairs for an HTTP Authorization header.
token.getRequestHeaders();
...
const token = OAuth2.TokenCredentials.fromAuthorizationHeader('Bearer ey.received.token');
Import the Token Introspection extension.
import 'oauth2-client-ts/dist/extensions/token_introspection';
When creating your OAuth 2.0 client, you can now specify the token introspection endpoint of the OAuth server.
const client = new OAuth2.Client({
...
introspectionEndpoint: 'https://www.example.com/auth/introspect',
});
Finally, introspect access or refresh tokens using your client directly.
const result = await client.introspect(
// The credentials used to authorize the introspection request:
new OAuth2.TokenCredentials('my.authorization.token', 'Bearer'),
'token.to.introspect'
);
FAQs
An exstensible OAuth 2.0, standard compliant client library for Node.js and the Web.
The npm package oauth2-client-ts receives a total of 45 weekly downloads. As such, oauth2-client-ts popularity was classified as not popular.
We found that oauth2-client-ts demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.