Gathering detailed insights and metrics for jsonwebtoken
Gathering detailed insights and metrics for jsonwebtoken
Gathering detailed insights and metrics for jsonwebtoken
Gathering detailed insights and metrics for jsonwebtoken
JsonWebToken implementation for node.js http://self-issued.info/docs/draft-ietf-oauth-json-web-token.html
npm install jsonwebtoken
98.2
Supply Chain
99.5
Quality
78.8
Maintenance
100
Vulnerability
98.6
License
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
17,740 Stars
449 Commits
1,230 Forks
256 Watching
8 Branches
101 Contributors
Updated on 28 Nov 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-7.9%
3,032,505
Compared to previous day
Last week
1.3%
17,623,633
Compared to previous week
Last month
5.6%
74,203,906
Compared to previous month
Last year
18.7%
779,034,187
Compared to previous year
Build | Dependency |
---|---|
An implementation of JSON Web Tokens.
This was developed against draft-ietf-oauth-json-web-token-08
. It makes use of node-jws
1$ npm install jsonwebtoken
(Asynchronous) If a callback is supplied, the callback is called with the err
or the JWT.
(Synchronous) Returns the JsonWebToken as string
payload
could be an object literal, buffer or string representing valid JSON.
Please note that
exp
or any other claim is only set if the payload is an object literal. Buffer or string payloads are not checked for JSON validity.
If
payload
is not a buffer or a string, it will be coerced into a string usingJSON.stringify
.
secretOrPrivateKey
is a string (utf-8 encoded), buffer, object, or KeyObject containing either the secret for HMAC algorithms or the PEM
encoded private key for RSA and ECDSA. In case of a private key with passphrase an object { key, passphrase }
can be used (based on crypto documentation), in this case be sure you pass the algorithm
option.
When signing with RSA algorithms the minimum modulus length is 2048 except when the allowInsecureKeySizes option is set to true. Private keys below this size will be rejected with an error.
options
:
algorithm
(default: HS256
)expiresIn
: expressed in seconds or a string describing a time span vercel/ms.
Eg:
60
,"2 days"
,"10h"
,"7d"
. A numeric value is interpreted as a seconds count. If you use a string be sure you provide the time units (days, hours, etc), otherwise milliseconds unit is used by default ("120"
is equal to"120ms"
).
notBefore
: expressed in seconds or a string describing a time span vercel/ms.
Eg:
60
,"2 days"
,"10h"
,"7d"
. A numeric value is interpreted as a seconds count. If you use a string be sure you provide the time units (days, hours, etc), otherwise milliseconds unit is used by default ("120"
is equal to"120ms"
).
audience
issuer
jwtid
subject
noTimestamp
header
keyid
mutatePayload
: if true, the sign function will modify the payload object directly. This is useful if you need a raw reference to the payload after claims have been applied to it but before it has been encoded into a token.allowInsecureKeySizes
: if true allows private keys with a modulus below 2048 to be used for RSAallowInvalidAsymmetricKeyTypes
: if true, allows asymmetric keys which do not match the specified algorithm. This option is intended only for backwards compatability and should be avoided.There are no default values for
expiresIn
,notBefore
,audience
,subject
,issuer
. These claims can also be provided in the payload directly withexp
,nbf
,aud
,sub
andiss
respectively, but you can't include in both places.
Remember that exp
, nbf
and iat
are NumericDate, see related Token Expiration (exp claim)
The header can be customized via the options.header
object.
Generated jwts will include an iat
(issued at) claim by default unless noTimestamp
is specified. If iat
is inserted in the payload, it will be used instead of the real timestamp for calculating other things like exp
given a timespan in options.expiresIn
.
Synchronous Sign with default (HMAC SHA256)
1var jwt = require('jsonwebtoken'); 2var token = jwt.sign({ foo: 'bar' }, 'shhhhh');
Synchronous Sign with RSA SHA256
1// sign with RSA SHA256 2var privateKey = fs.readFileSync('private.key'); 3var token = jwt.sign({ foo: 'bar' }, privateKey, { algorithm: 'RS256' });
Sign asynchronously
1jwt.sign({ foo: 'bar' }, privateKey, { algorithm: 'RS256' }, function(err, token) { 2 console.log(token); 3});
Backdate a jwt 30 seconds
1var older_token = jwt.sign({ foo: 'bar', iat: Math.floor(Date.now() / 1000) - 30 }, 'shhhhh');
The standard for JWT defines an exp
claim for expiration. The expiration is represented as a NumericDate:
A JSON numeric value representing the number of seconds from 1970-01-01T00:00:00Z UTC until the specified UTC date/time, ignoring leap seconds. This is equivalent to the IEEE Std 1003.1, 2013 Edition [POSIX.1] definition "Seconds Since the Epoch", in which each day is accounted for by exactly 86400 seconds, other than that non-integer values can be represented. See RFC 3339 [RFC3339] for details regarding date/times in general and UTC in particular.
This means that the exp
field should contain the number of seconds since the epoch.
Signing a token with 1 hour of expiration:
1jwt.sign({ 2 exp: Math.floor(Date.now() / 1000) + (60 * 60), 3 data: 'foobar' 4}, 'secret');
Another way to generate a token like this with this library is:
1jwt.sign({ 2 data: 'foobar' 3}, 'secret', { expiresIn: 60 * 60 }); 4 5//or even better: 6 7jwt.sign({ 8 data: 'foobar' 9}, 'secret', { expiresIn: '1h' });
(Asynchronous) If a callback is supplied, function acts asynchronously. The callback is called with the decoded payload if the signature is valid and optional expiration, audience, or issuer are valid. If not, it will be called with the error.
(Synchronous) If a callback is not supplied, function acts synchronously. Returns the payload decoded if the signature is valid and optional expiration, audience, or issuer are valid. If not, it will throw the error.
Warning: When the token comes from an untrusted source (e.g. user input or external requests), the returned decoded payload should be treated like any other user input; please make sure to sanitize and only work with properties that are expected
token
is the JsonWebToken string
secretOrPublicKey
is a string (utf-8 encoded), buffer, or KeyObject containing either the secret for HMAC algorithms, or the PEM
encoded public key for RSA and ECDSA.
If jwt.verify
is called asynchronous, secretOrPublicKey
can be a function that should fetch the secret or public key. See below for a detailed example
As mentioned in this comment, there are other libraries that expect base64 encoded secrets (random bytes encoded using base64), if that is your case you can pass Buffer.from(secret, 'base64')
, by doing this the secret will be decoded using base64 and the token verification will use the original random bytes.
options
algorithms
: List of strings with the names of the allowed algorithms. For instance, ["HS256", "HS384"]
.
If not specified a defaults will be used based on the type of key provided
- secret - ['HS256', 'HS384', 'HS512']
- rsa - ['RS256', 'RS384', 'RS512']
- ec - ['ES256', 'ES384', 'ES512']
- default - ['RS256', 'RS384', 'RS512']
audience
: if you want to check audience (aud
), provide a value here. The audience can be checked against a string, a regular expression or a list of strings and/or regular expressions.
Eg:
"urn:foo"
,/urn:f[o]{2}/
,[/urn:f[o]{2}/, "urn:bar"]
complete
: return an object with the decoded { payload, header, signature }
instead of only the usual content of the payload.issuer
(optional): string or array of strings of valid values for the iss
field.jwtid
(optional): if you want to check JWT ID (jti
), provide a string value here.ignoreExpiration
: if true
do not validate the expiration of the token.ignoreNotBefore
...subject
: if you want to check subject (sub
), provide a value hereclockTolerance
: number of seconds to tolerate when checking the nbf
and exp
claims, to deal with small clock differences among different serversmaxAge
: the maximum allowed age for tokens to still be valid. It is expressed in seconds or a string describing a time span vercel/ms.
Eg:
1000
,"2 days"
,"10h"
,"7d"
. A numeric value is interpreted as a seconds count. If you use a string be sure you provide the time units (days, hours, etc), otherwise milliseconds unit is used by default ("120"
is equal to"120ms"
).
clockTimestamp
: the time in seconds that should be used as the current time for all necessary comparisons.nonce
: if you want to check nonce
claim, provide a string value here. It is used on Open ID for the ID Tokens. (Open ID implementation notes)allowInvalidAsymmetricKeyTypes
: if true, allows asymmetric keys which do not match the specified algorithm. This option is intended only for backwards compatability and should be avoided.1// verify a token symmetric - synchronous 2var decoded = jwt.verify(token, 'shhhhh'); 3console.log(decoded.foo) // bar 4 5// verify a token symmetric 6jwt.verify(token, 'shhhhh', function(err, decoded) { 7 console.log(decoded.foo) // bar 8}); 9 10// invalid token - synchronous 11try { 12 var decoded = jwt.verify(token, 'wrong-secret'); 13} catch(err) { 14 // err 15} 16 17// invalid token 18jwt.verify(token, 'wrong-secret', function(err, decoded) { 19 // err 20 // decoded undefined 21}); 22 23// verify a token asymmetric 24var cert = fs.readFileSync('public.pem'); // get public key 25jwt.verify(token, cert, function(err, decoded) { 26 console.log(decoded.foo) // bar 27}); 28 29// verify audience 30var cert = fs.readFileSync('public.pem'); // get public key 31jwt.verify(token, cert, { audience: 'urn:foo' }, function(err, decoded) { 32 // if audience mismatch, err == invalid audience 33}); 34 35// verify issuer 36var cert = fs.readFileSync('public.pem'); // get public key 37jwt.verify(token, cert, { audience: 'urn:foo', issuer: 'urn:issuer' }, function(err, decoded) { 38 // if issuer mismatch, err == invalid issuer 39}); 40 41// verify jwt id 42var cert = fs.readFileSync('public.pem'); // get public key 43jwt.verify(token, cert, { audience: 'urn:foo', issuer: 'urn:issuer', jwtid: 'jwtid' }, function(err, decoded) { 44 // if jwt id mismatch, err == invalid jwt id 45}); 46 47// verify subject 48var cert = fs.readFileSync('public.pem'); // get public key 49jwt.verify(token, cert, { audience: 'urn:foo', issuer: 'urn:issuer', jwtid: 'jwtid', subject: 'subject' }, function(err, decoded) { 50 // if subject mismatch, err == invalid subject 51}); 52 53// alg mismatch 54var cert = fs.readFileSync('public.pem'); // get public key 55jwt.verify(token, cert, { algorithms: ['RS256'] }, function (err, payload) { 56 // if token alg != RS256, err == invalid signature 57}); 58 59// Verify using getKey callback 60// Example uses https://github.com/auth0/node-jwks-rsa as a way to fetch the keys. 61var jwksClient = require('jwks-rsa'); 62var client = jwksClient({ 63 jwksUri: 'https://sandrino.auth0.com/.well-known/jwks.json' 64}); 65function getKey(header, callback){ 66 client.getSigningKey(header.kid, function(err, key) { 67 var signingKey = key.publicKey || key.rsaPublicKey; 68 callback(null, signingKey); 69 }); 70} 71 72jwt.verify(token, getKey, options, function(err, decoded) { 73 console.log(decoded.foo) // bar 74}); 75
(Synchronous) Returns the decoded payload without verifying if the signature is valid.
Warning: This will not verify whether the signature is valid. You should not use this for untrusted messages. You most likely want to use
jwt.verify
instead.
Warning: When the token comes from an untrusted source (e.g. user input or external request), the returned decoded payload should be treated like any other user input; please make sure to sanitize and only work with properties that are expected
token
is the JsonWebToken string
options
:
json
: force JSON.parse on the payload even if the header doesn't contain "typ":"JWT"
.complete
: return an object with the decoded payload and header.Example
1// get the decoded payload ignoring signature, no secretOrPrivateKey needed 2var decoded = jwt.decode(token); 3 4// get the decoded payload and header 5var decoded = jwt.decode(token, {complete: true}); 6console.log(decoded.header); 7console.log(decoded.payload)
Possible thrown errors during verification. Error is the first argument of the verification callback.
Thrown error if the token is expired.
Error object:
1jwt.verify(token, 'shhhhh', function(err, decoded) { 2 if (err) { 3 /* 4 err = { 5 name: 'TokenExpiredError', 6 message: 'jwt expired', 7 expiredAt: 1408621000 8 } 9 */ 10 } 11});
Error object:
.
)1jwt.verify(token, 'shhhhh', function(err, decoded) { 2 if (err) { 3 /* 4 err = { 5 name: 'JsonWebTokenError', 6 message: 'jwt malformed' 7 } 8 */ 9 } 10});
Thrown if current time is before the nbf claim.
Error object:
1jwt.verify(token, 'shhhhh', function(err, decoded) { 2 if (err) { 3 /* 4 err = { 5 name: 'NotBeforeError', 6 message: 'jwt not active', 7 date: 2018-10-04T16:10:44.000Z 8 } 9 */ 10 } 11});
Array of supported algorithms. The following algorithms are currently supported.
alg Parameter Value | Digital Signature or MAC Algorithm |
---|---|
HS256 | HMAC using SHA-256 hash algorithm |
HS384 | HMAC using SHA-384 hash algorithm |
HS512 | HMAC using SHA-512 hash algorithm |
RS256 | RSASSA-PKCS1-v1_5 using SHA-256 hash algorithm |
RS384 | RSASSA-PKCS1-v1_5 using SHA-384 hash algorithm |
RS512 | RSASSA-PKCS1-v1_5 using SHA-512 hash algorithm |
PS256 | RSASSA-PSS using SHA-256 hash algorithm (only node ^6.12.0 OR >=8.0.0) |
PS384 | RSASSA-PSS using SHA-384 hash algorithm (only node ^6.12.0 OR >=8.0.0) |
PS512 | RSASSA-PSS using SHA-512 hash algorithm (only node ^6.12.0 OR >=8.0.0) |
ES256 | ECDSA using P-256 curve and SHA-256 hash algorithm |
ES384 | ECDSA using P-384 curve and SHA-384 hash algorithm |
ES512 | ECDSA using P-521 curve and SHA-512 hash algorithm |
none | No digital signature or MAC value included |
First of all, we recommend you to think carefully if auto-refreshing a JWT will not introduce any vulnerability in your system.
We are not comfortable including this as part of the library, however, you can take a look at this example to show how this could be accomplished. Apart from that example there are an issue and a pull request to get more knowledge about this topic.
If you have found a bug or if you have a feature request, please report them at this repository issues section. Please do not report security vulnerabilities on the public GitHub issue tracker. The Responsible Disclosure Program details the procedure for disclosing security issues.
This project is licensed under the MIT license. See the LICENSE file for more info.
The latest stable version of the package.
Stable Version
1
0/10
Summary
Verification Bypass in jsonwebtoken
Affected Versions
< 4.2.2
Patched Versions
4.2.2
2
8.1/10
Summary
jsonwebtoken unrestricted key type could lead to legacy keys usage
Affected Versions
<= 8.5.1
Patched Versions
9.0.0
7.6/10
Summary
jsonwebtoken has insecure input validation in jwt.verify function
Affected Versions
<= 8.5.1
Patched Versions
9.0.0
2
6.4/10
Summary
jsonwebtoken vulnerable to signature validation bypass due to insecure default algorithm in jwt.verify()
Affected Versions
< 9.0.0
Patched Versions
9.0.0
5/10
Summary
jsonwebtoken's insecure implementation of key retrieval function could lead to Forgeable Public/Private Tokens from RSA to HMAC
Affected Versions
<= 8.5.1
Patched Versions
9.0.0
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
security policy file detected
Details
Reason
Found 23/28 approved changesets -- score normalized to 8
Reason
branch protection is not maximal on development and all release branches
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Score
Last Scanned on 2024-11-25
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More