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.
oauth-header
Advanced tools
Generates the value for the Authorization header when making request via OAuth 1.
When trying to write a client for an API which utilizes OAuth 1, I ran into the problem that there are only packages which are either doing to much or not enough for my taste:
node-oauth provides a full http client that I have to use to make my requests.
oauth-signature only generates the signature and one has to assemble the header manually. Also at the time of writing I was unable to create a valid signature with this package (tested against Postman)
So I set out to create a solution that sits in the middle: Only take care of what's needed for the authentification and leave the rest to the dev.
To install this package use
npm i oauth-header
The package also contains type definitions for use with TypeScript.
const oauthHeader = require("oauth-header);
const generator = new oauthHeader.Generator(
"consumerKey",
"consumerSecret",
"tokenKey",
"tokenSecret"
);
const value = generator.generateHeaderValue(
"GET",
"https://example.com"
);
console.log(value);
// OAuth oauth_consumer_key="consumerKey",oauth_nonce="1C107D6C84061269",oauth_signature_method="HMAC-SHA1",oauth_timestamp="1638119811",oauth_token="tokenKey",oauth_version="1.0",oauth_signature="pLm0aUMcISV%2Bow0U%2BwhWdkf4lVk%3D"
To account for differenc signing methods Generator.generateHeaderValue()
accepts the additional parameter signatureMethod
, which can be one of three options:
PLAINTEXT
HMAC-SHA1
RSA-SHA1
At the time of writing this package is highly geared towards my personal use case and may not work for yours.
Currently the application token is mandatory.
The signing with the RSA-SHA1
algorithm is not implemented yet.
Currently the package does not support processing complex parameters i.e. objects. Only basic values as string, numbers, booleans may be used.
Part of the source code is based on node-oauth and oauth-signature. Their respective licences can be found in the licence folder.
FAQs
Generates the value for the Authorization header when using OAuth 1
We found that oauth-header 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.