Skip to content

Commit ce98cd4

Browse files
authoredDec 3, 2021
Merge pull request #84 from jwtk/op-OKTA-444793-vuln-uuid
chore: bump uuid dependency to 8.x and enforce minimal node version
2 parents a473c84 + 4913f46 commit ce98cd4

9 files changed

+56
-44
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# nJwt Change Log
22

3+
### 1.2.0
4+
5+
* [#84] (https://github.com/jwtk/njwt/pull/84) Resolves `uuid` vulnerability.
6+
37
### 1.1.0
48

59
* [#77](https://github.com/jwtk/njwt/pull/77) Adds TypeScript type definitions.

‎package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
{
22
"name": "njwt",
3-
"version": "1.1.0",
3+
"version": "1.2.0",
44
"description": "JWT Library for Node.js",
5+
"engines": {
6+
"node": ">=6.0"
7+
},
58
"main": "index.js",
69
"types": "index.d.ts",
710
"scripts": {
@@ -28,7 +31,7 @@
2831
"dependencies": {
2932
"@types/node": "^15.0.1",
3033
"ecdsa-sig-formatter": "^1.0.5",
31-
"uuid": "^3.3.2"
34+
"uuid": "^8.3.2"
3235
},
3336
"devDependencies": {
3437
"@typescript-eslint/eslint-plugin": "^4.22.0",

‎test/algs.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ var fs = require('fs');
55
var path = require('path');
66

77
function itShouldBeAValidJwt(jwt){
8-
assert(nJwt.create({},uuid()) instanceof nJwt.Jwt);
8+
assert(nJwt.create({},uuid.v4()) instanceof nJwt.Jwt);
99
var nowUnix = Math.floor(new Date().getTime()/1000);
10-
assert.equal(nJwt.create({},uuid()).body.iat , nowUnix);
10+
assert.equal(nJwt.create({},uuid.v4()).body.iat , nowUnix);
1111
assert(jwt.body.jti.match(/[a-zA-Z0-9]+[-]/));
1212
}
1313

1414
function testHmacAlg(alg,done){
15-
var key = uuid();
16-
var claims = { hello: uuid(), debug: true };
15+
var key = uuid.v4();
16+
var claims = { hello: uuid.v4(), debug: true };
1717
var jwt = nJwt.create(claims,key,alg);
1818
var token = jwt.compact();
1919

@@ -27,7 +27,7 @@ function testHmacAlg(alg,done){
2727
}
2828

2929
function testKeyAlg(alg,keyPair,done){
30-
var claims = { hello: uuid(), debug: true };
30+
var claims = { hello: uuid.v4(), debug: true };
3131
var jwt = nJwt.create(claims,keyPair.private,alg);
3232
var token = jwt.compact();
3333

‎test/builder.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ describe('create()',function(){
2727
});
2828

2929
it('should create a default token if the scret is the only value',function(){
30-
assert(nJwt.create(uuid()) instanceof nJwt.Jwt);
30+
assert(nJwt.create(uuid.v4()) instanceof nJwt.Jwt);
3131
});
3232

3333
it('should throw if using defaults without a secret key',function(){
@@ -45,33 +45,33 @@ describe('create()',function(){
4545
describe('with a signing key',function(){
4646

4747
it('should return a JWT',function(){
48-
assert(nJwt.create({},uuid()) instanceof nJwt.Jwt);
48+
assert(nJwt.create({},uuid.v4()) instanceof nJwt.Jwt);
4949
});
5050

5151
it('should use HS256 by default',function(){
52-
assert.equal(nJwt.create({},uuid()).header.alg,'HS256');
52+
assert.equal(nJwt.create({},uuid.v4()).header.alg,'HS256');
5353
});
5454

5555
it('should create the iat field',function(){
5656
var nowUnix = Math.floor(new Date().getTime()/1000);
57-
assert.equal(nJwt.create({},uuid()).body.iat , nowUnix);
57+
assert.equal(nJwt.create({},uuid.v4()).body.iat , nowUnix);
5858
});
5959

6060
it('should not overwrite a defined iat field',function(){
61-
assert.equal(nJwt.create({iat: 1},uuid()).body.iat , 1);
61+
assert.equal(nJwt.create({iat: 1},uuid.v4()).body.iat , 1);
6262
});
6363

6464
it('should create the exp field, defaulted to 1 hour',function(){
6565
var oneHourFromNow = Math.floor(new Date().getTime()/1000) + (60*60);
66-
assert.equal(nJwt.create({},uuid()).body.exp , oneHourFromNow);
66+
assert.equal(nJwt.create({},uuid.v4()).body.exp , oneHourFromNow);
6767
});
6868

6969
it('should not overwrite a defined jti field',function(){
70-
assert.equal(nJwt.create({jti: 1},uuid()).body.jti , 1);
70+
assert.equal(nJwt.create({jti: 1},uuid.v4()).body.jti , 1);
7171
});
7272

7373
it('should create the jti field',function(){
74-
var jwt = nJwt.create({},uuid());
74+
var jwt = nJwt.create({},uuid.v4());
7575
assert(jwt.body.jti.match(/[a-zA-Z0-9]+[-]/));
7676
});
7777

‎test/jwt.js

+9-9
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,28 @@ describe('Jwt',function() {
1010

1111
describe('.setClaim()',function(){
1212
it('should set a claim on the claims body',function(){
13-
var myClaim = uuid();
13+
var myClaim = uuid.v4();
1414
assert.equal(nJwt.Jwt().setClaim('myClaim', myClaim).body.myClaim,myClaim);
1515
});
1616
});
1717

1818
describe('.setHeader()',function(){
1919
it('should set a header param on the header',function(){
20-
var kid = uuid();
20+
var kid = uuid.v4();
2121
assert.equal(nJwt.Jwt().setHeader('kid', kid).header.kid,kid);
2222
});
2323
});
2424

2525
describe('.setSubject()',function(){
2626
it('should set the sub claim',function(){
27-
var sub = uuid();
27+
var sub = uuid.v4();
2828
assert.equal(nJwt.Jwt().setSubject(sub).body.sub,sub);
2929
});
3030
});
3131

3232
describe('.setIssuer()',function(){
3333
it('should set the iss claim',function(){
34-
var iss = uuid();
34+
var iss = uuid.v4();
3535
assert.equal(nJwt.Jwt().setIssuer(iss).body.iss,iss);
3636
});
3737
});
@@ -52,9 +52,9 @@ describe('Jwt',function() {
5252
);
5353
});
5454
it('should allow me to remove the exp field',function(){
55-
var jwt = nJwt.create({},uuid());
55+
var jwt = nJwt.create({},uuid.v4());
5656
var oneHourFromNow = Math.floor(new Date().getTime()/1000) + (60*60);
57-
assert.equal(nJwt.create({},uuid()).body.exp , oneHourFromNow);
57+
assert.equal(nJwt.create({},uuid.v4()).body.exp , oneHourFromNow);
5858
assert.equal(jwt.setExpiration().body.exp, undefined);
5959
assert.equal(jwt.setExpiration(false).body.exp, undefined);
6060
assert.equal(jwt.setExpiration(null).body.exp, undefined);
@@ -79,9 +79,9 @@ describe('Jwt',function() {
7979
);
8080
});
8181
it('should allow me to remove the nbf field',function(){
82-
var jwt = nJwt.create({},uuid());
82+
var jwt = nJwt.create({},uuid.v4());
8383
var oneHourFromNow = Math.floor(new Date().getTime()/1000) + (60*60);
84-
assert.equal(nJwt.create({},uuid()).body.nbf , undefined);
84+
assert.equal(nJwt.create({},uuid.v4()).body.nbf , undefined);
8585
assert.equal(jwt.setNotBefore().body.nbf, undefined);
8686
assert.equal(jwt.setNotBefore(false).body.nbf, undefined);
8787
assert.equal(jwt.setNotBefore(null).body.nbf, undefined);
@@ -107,7 +107,7 @@ describe('Jwt',function() {
107107
});
108108
describe('.toString()',function(){
109109
it('should return the compacted JWT string',function(){
110-
var jwt = nJwt.create({},uuid());
110+
var jwt = nJwt.create({},uuid.v4());
111111
assert.equal(jwt.compact(),jwt.toString());
112112
});
113113
});

‎test/key-resolver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ describe('Verifier', function() {
4141
beforeEach(function() {
4242
callCount = 0;
4343
keyKid = '123';
44-
signingKey = uuid();
44+
signingKey = uuid.v4();
4545
keyResolver = function(kid, cb) {
4646
callCount++;
4747
assert(kid === keyKid);

‎test/others.js

+8-8
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ var jwtSimple = require('jwt-simple');
66

77
describe('this library',function () {
88
it('should generate tokens that can be verified by jsonwebtoken',function(done){
9-
var key = uuid();
10-
var claims = {hello:uuid()};
9+
var key = uuid.v4();
10+
var claims = {hello:uuid.v4()};
1111
var jwt = nJwt.create(claims,key);
1212
var token = jwt.compact();
1313
assert.doesNotThrow(function(){
@@ -23,8 +23,8 @@ describe('this library',function () {
2323
});
2424

2525
it('should be able to verify tokens from jsonwebtoken',function(done){
26-
var claims = {hello:uuid()};
27-
var key = uuid();
26+
var claims = {hello:uuid.v4()};
27+
var key = uuid.v4();
2828
var token = jsonwebtoken.sign(claims, key);
2929
nJwt.verify(token,key,function(err,jwt){
3030
assert.isNull(err,'An unexpcted error was returned');
@@ -34,8 +34,8 @@ describe('this library',function () {
3434
});
3535

3636
it('should generate tokens that can be verified by jwt-simple',function(done){
37-
var key = uuid();
38-
var claims = {hello:uuid()};
37+
var key = uuid.v4();
38+
var claims = {hello:uuid.v4()};
3939
var jwt = nJwt.create(claims,key);
4040
var token = jwt.compact();
4141
var decoded;
@@ -51,8 +51,8 @@ describe('this library',function () {
5151
});
5252

5353
it('should be able to verify tokens from jwt-simple',function(done){
54-
var claims = {hello:uuid()};
55-
var key = uuid();
54+
var claims = {hello:uuid.v4()};
55+
var key = uuid.v4();
5656
var token = jwtSimple.encode(claims, key);
5757
nJwt.verify(token,key,function(err,jwt){
5858
assert.isNull(err,'An unexpcted error was returned');

‎test/verifier.js

+11-11
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ describe('.verify()',function(){
4141
});
4242

4343
it('should not alter the JWT, it should be compact-able as the same token',function(){
44-
var orignalJwt = new nJwt.Jwt({hello: uuid()}, false).setSigningAlgorithm('none');
44+
var orignalJwt = new nJwt.Jwt({hello: uuid.v4()}, false).setSigningAlgorithm('none');
4545
var originalToken = orignalJwt.compact();
4646
var verifiedJwt = nJwt.verify(originalToken);
4747
assert.equal(originalToken, verifiedJwt.compact());
4848
});
4949

5050
describe('if given only a token',function(){
5151
it('should verify tokens that are alg none',function(){
52-
var claims = {hello: uuid()};
52+
var claims = {hello: uuid.v4()};
5353
var token = new nJwt.Jwt(claims)
5454
.setSigningAlgorithm('none')
5555
.compact();
@@ -58,8 +58,8 @@ describe('.verify()',function(){
5858
});
5959
});
6060
it('should reject tokens that specify an alg',function(){
61-
var claims = {hello: uuid()};
62-
var key = uuid();
61+
var claims = {hello: uuid.v4()};
62+
var key = uuid.v4();
6363
var token = new nJwt.create(claims,key)
6464
.compact();
6565
assert.throws(function(){
@@ -90,7 +90,7 @@ describe('.verify()',function(){
9090
});
9191

9292
it('should give me the parsed header on the error object if the body fails',function(done){
93-
var header = nJwt.JwtHeader({typ:'JWT',alg:uuid()});
93+
var header = nJwt.JwtHeader({typ:'JWT',alg:uuid.v4()});
9494
var invalidJwt = header.compact()+'.notavalidbody';
9595
nJwt.verify(invalidJwt,function(err){
9696
assert.equal(err.jwtString, invalidJwt);
@@ -106,7 +106,7 @@ describe('Verifier().verify() ',function(){
106106
it('should support sync usage',function(){
107107
var verifier = new nJwt.Verifier()
108108
.setSigningAlgorithm('none');
109-
var claims = {hello: uuid()};
109+
var claims = {hello: uuid.v4()};
110110
var token = new nJwt.Jwt(claims).compact();
111111
var verifiedToken;
112112
assert.doesNotThrow(function(){
@@ -123,7 +123,7 @@ describe('Verifier().verify() ',function(){
123123
});
124124

125125
it('should return the jwt string, header and body on error objects',function(done){
126-
var jwt = new nJwt.Jwt({expiredToken:uuid()})
126+
var jwt = new nJwt.Jwt({expiredToken:uuid.v4()})
127127
.setExpiration(new Date().getTime()-1000);
128128
var token = jwt.compact();
129129
nJwt.verify(token,function(err){
@@ -136,7 +136,7 @@ describe('Verifier().verify() ',function(){
136136
});
137137

138138
it('should return the jwt string, header and body on error objects with not active message',function(done){
139-
var jwt = new nJwt.Jwt({notActiveToken:uuid()})
139+
var jwt = new nJwt.Jwt({notActiveToken:uuid.v4()})
140140
.setNotBefore(new Date().getTime()+1000);
141141
var token = jwt.compact();
142142
nJwt.verify(token,function(err){
@@ -149,7 +149,7 @@ describe('Verifier().verify() ',function(){
149149
});
150150

151151
it('should return the jwt string, header and body with null error objects',function(done){
152-
var jwt = new nJwt.Jwt({notActiveToken:uuid()});
152+
var jwt = new nJwt.Jwt({notActiveToken:uuid.v4()});
153153
var token = jwt.compact();
154154
nJwt.verify(token,function(err){
155155
assert.isNull(err);
@@ -162,7 +162,7 @@ describe('Verifier().verify() ',function(){
162162
var verifier = new nJwt.Verifier()
163163
.setSigningAlgorithm('none');
164164

165-
var claims = {hello: uuid()};
165+
var claims = {hello: uuid.v4()};
166166

167167
describe('and given an unsigned token',function(){
168168
var result;
@@ -273,7 +273,7 @@ describe('Verifier().verify() ',function(){
273273
.setSigningAlgorithm('HS256')
274274
.setSigningKey(key);
275275

276-
var claims = {hello:uuid()};
276+
var claims = {hello:uuid.v4()};
277277

278278
describe('and given a token that was signed with the same key',function(){
279279
var result;

‎yarn.lock

+5
Original file line numberDiff line numberDiff line change
@@ -2792,6 +2792,11 @@ uuid@^3.3.2:
27922792
resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
27932793
integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
27942794

2795+
uuid@^8.3.2:
2796+
version "8.3.2"
2797+
resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
2798+
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
2799+
27952800
v8-compile-cache@^2.0.3:
27962801
version "2.3.0"
27972802
resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee"

0 commit comments

Comments
 (0)
Please sign in to comment.