Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
atlassian-jwt
Advanced tools
JWT (JSON Web Token) implementation with custom Atlassian QSH claim verification
JWT (JSON Web Token) encoding & decoding library for node.js. Built of jwt-simple and adds Atlassian's custom QSH (query string hash) claim.
For more information on using JWT tokens with Atlassian add-ons, please read: Understanding JWT.
$ npm install atlassian-jwt
var jwt = require('atlassian-jwt');
var moment = require('moment'); // time library for convenience
var now = moment().utc();
// Simple form of [request](https://npmjs.com/package/request) object
var req = {
method: 'GET',
path: '/rest/resource/you/want'
};
var token = {
"iss": 'issuer-val',
"iat": now.unix(), // the time the token is generated
"exp": now.add(3, 'minutes').unix(), // token expiry time (recommend 3 minutes after issuing)
"qsh": jwt.createQueryStringHash(req) // [Query String Hash](https://developer.atlassian.com/static/connect/docs/latest/concepts/understanding-jwt.html#qsh)
};
var secret = 'xxx';
var token = jwt.encode(token, secret);
console.log(token);
/*
* jwt.decode(token, secret, noVerify, algorithm)
*
* Decodes the JWT token and verifies the signature using the secret and algorithm. Algorithm defaults to HS256.
*/
var decoded = jwt.decode(token, secret);
console.log(decoded); //=> { foo: 'bar' }
/*
* Decode without verifing the signature of the token.
* Tokens should never be used without verifying the signature as otherwise payload trust cannot be established.
*/
var decoded = jwt.decode(token, null, true);
console.log(decoded); //=> { foo: 'bar' }
jwt.createQueryStringHash(req, checkBodyForParams, baseUrl)
- Create a QSH using the algorithm defined by the algorithm
jwt.createCanonicalRequest(req, checkBodyForParams, baseUrl)
- Creates a canonical request which is used to calculate the QSH for the JWT token. Prefer using #createQueryStringHash() directly
By default the algorithm to encode is HS256
.
The supported algorithms for encoding and decoding are HS256
, HS384
, HS512
and RS256
.
// encode using HS512
jwt.encode(payload, secret, 'HS512')
FAQs
JWT (JSON Web Token) implementation with custom Atlassian QSH claim verification
The npm package atlassian-jwt receives a total of 76,949 weekly downloads. As such, atlassian-jwt popularity was classified as popular.
We found that atlassian-jwt demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 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 researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.