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.
@advanced-rest-client/oauth-authorization
Advanced tools
A set of elements that perform oauth authorization
Provides components to authorize the user using OAuth 1 and OAuth 2 standards.
There are 4 basic token requests flows:
authorization_code
type)implicit
type)password
type)client_credentials
type)Additionally you can use custom flow type.
Main function is the authorize()
function that can be also used via event system.
This function accepts different set of parameters depending on request type.
<outh2-authorization></outh2-authorization>
const settings = {
type: 'implicit',
clientId: 'CLIENT ID',
redirectUri: 'https://example.com/auth-popup.html',
authorizationUri: 'https://auth.example.com/token'
scopes: ['email'],
state: 'Optional string'
};
const factory = document.querySelector('outh2-authorization');
factory.authorize(settings)
// or event based
const event = new CustomEvent('oauth2-token-requested', { 'detail': settings, bubbles: true });
document.dispatchEvent(event);
Listen for token response:
// oauth2-token-response
factory.ontokenresponse = (e) => {
console.log(e.detial);
};
// oauth2-error event
factory.ontokenerror = (e) => {
console.log(e.detial);
};
An element or app that requesting the token should observe the oauth2-token-response
and
oauth2-error
events to get back the response.
This element contain a oauth-popup.html
that can be used to exchange token / code data with
hosting page. Other page can be used as well. But in must window.postMessage
back to the
window.opener
. The structure of the message if the parsed query or has string to the map
of parameters. Furthermore it must camel case the parameters. Example script is source code
of the oauth-popup.html
page.
Popup should be served over the SSL.
This element is intened to be used in debug applications where confidentialy is already compromised because users may be asked to provide client secret parameter (depending on the flow). It should not be used in client applications that don't serve debugging purposes. Client secret should never be used on the client side.
To have at least minimum of protection (in already compromised environment) this library generates
a state
parameter as a series of alphanumeric characters and append them to the request.
It is expected to return the same string in the response (as defined in rfc6749). Though this
parameter is optional, it will reject the response if the state
parameter is not the same as the
one generated before the request.
The state parameter is generated automatically by the element if non provided in settings. It is a good idea to use this property to check if the event response (either token or error) are coming from your request for token. The app can support different OAuth clients so you can check later with the token response if this is a response for the same client.
For implicit
and code
token requests you can set interactive
property
of the settings object to false
to request the token in the background without
displaying any UI related to authorization to the user.
It can be used to request an access token after the user authorized the application.
Server should return the token which will be passed back to the application.
When using interactive = false
mode then the response event is always
oauth2-token-response
, even when there was authorization error or user never
authorized the application. In this case the response object will not carry
accessToken
property and always have interactive
set to false
and code
to determine cause of unsuccessful request.
const settings = {
interactive: false,
type: 'implicit',
clientId: 'CLIENT ID',
redirectUri: 'https://example.com/auth-popup.html',
authorizationUri: 'https://auth.example.com/token'
state: '1234'
};
const event = new CustomEvent('oauth2-token-requested', { 'detail': settings, bubbles: true });
document.dispatchEvent(event);
document.body.addEventListener('oauth2-token-response', (e) => {
let info = e.detail;
if (info.state !== '1234') {
return;
}
if (info.interactive === false && info.code) {
// unsuccessful request
return;
}
let token = info.accessToken;
});
An element to perform OAuth1 authorization and to sign auth requests.
Note that the OAuth1 authorization wasn't designed for browser. Most existing
OAuth1 implementation disallow browsers to perform the authorization by
not allowing POST requests to authorization server. Therefore receiving token
may not be possible without using browser extensions to alter HTTP request to
enable CORS.
If the server disallow obtaining authorization token and secret from clients
then your application has to listen for oauth1-token-requested
custom event
and perform authorization on the server side.
When auth token and secret is available and the user is to perform a HTTP request,
the request panel sends before-request
custom event. This element handles the event
and applies authorization header with generated signature to the request.
Both authorization or request signing requires detailed configuration object.
This is handled by the request panel. It sets OAuth1 configuration in the request.auth
property.
Property | Type | Description |
---|---|---|
signatureMethod | String | One of PLAINTEXT , HMAC-SHA1 , RSA-SHA1 |
requestTokenUri | String | Token request URI. Optional for before request. Required for authorization |
accessTokenUri | String | Access token request URI. Optional for before request. Required for authorization |
authorizationUri | String | User dialog URL. |
consumerKey | String | Consumer key to be used to generate the signature. Optional for before request. |
consumerSecret | String | Consumer secret to be used to generate the signature. Optional for before request. |
redirectUri | String | Redirect URI for the authorization. Optional for before request. |
authParamsLocation | String | Location of the authorization parameters. Default to authorization header |
authTokenMethod | String | Token request HTTP method. Default to POST . Optional for before request. |
version | String | Oauth1 protocol version. Default to 1.0 |
nonceSize | Number | Size of the nonce word to generate. Default to 32. Unused if nonce is set. |
nonce | String | Nonce to be used to generate signature. |
timestamp | Number | Request timestamp. If not set it sets current timestamp |
customHeaders | Object | Map of custom headers to set with authorization request |
type | String | Must be set to oauth1 or during before-request this object will be ignored. |
token | String | Required for signing requests. Received OAuth token |
tokenSecret | String | Required for signing requests. Received OAuth token secret |
params-error
Oauth1 parameters are invalidoauth1-error
OAuth popup is blocked.token-request-error
HTTP request to the authorization server failedno-response
No response recorded.npm install --save @advanced-rest-client/oauth-authorization
<html>
<head>
<script type="module">
import '@advanced-rest-client/advanced-rest-client/oauth-authorization.js';
</script>
</head>
<body>
<oauth-authorization></oauth-authorization>
</body>
</html>
git clone https://github.com/advanced-rest-client/oauth-authorization
cd oauth-authorization
npm install
npm test
The CryptoJS
and RSAKey
libraries are not included into the element sources.
If your project do not use this libraries already include it into your project.
npm i cryptojslib jsrsasign
<script src="../../../cryptojslib/components/core.js"></script>
<script src="../../../cryptojslib/rollups/sha1.js"></script>
<script src="../../../cryptojslib/components/enc-base64-min.js"></script>
<script src="../../../cryptojslib/rollups/md5.js"></script>
<script src="../../../cryptojslib/rollups/hmac-sha1.js"></script>
<script src="../../../jsrsasign/lib/jsrsasign-rsa-min.js"></script>
Also OAuth1 element uses URL
class with searchParams
properties. If targeting old browsers include polyfill for this too.
FAQs
A set of elements that perform oauth authorization
The npm package @advanced-rest-client/oauth-authorization receives a total of 379 weekly downloads. As such, @advanced-rest-client/oauth-authorization popularity was classified as not popular.
We found that @advanced-rest-client/oauth-authorization demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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.
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.