-
Notifications
You must be signed in to change notification settings - Fork 339
/
Copy pathjwt.js
218 lines (182 loc) · 7.25 KB
/
jwt.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
import * as jwt from '../../../src/editor/jwt.js';
import tokens from '../../../src/editor/default-tokens.js';
import b64u from 'base64url';
import log from 'loglevel';
import chai from 'chai';
import chaiAsPromised from 'chai-as-promised';
import { randomFillSync, generateKeyPair } from 'crypto';
chai.use(chaiAsPromised);
chai.should();
describe('JWT', function() {
it('detects tokens', function() {
jwt.isToken('skdjf9238ujdhkf.asdfasdf2.sdsdffsfsd').should.be.false;
jwt.isToken('skdjf9238ujdhkf.asdfasdf2').should.be.false;
jwt.isToken('skdjf9238ujdhkfdfsai28#390}{+śdf').should.be.false;
jwt.isToken(tokens.hs256.token).should.be.true;
jwt.isToken(tokens.rs256.token).should.be.true;
});
it('detects tokens without a signature', function() {
const split = tokens.hs256.token.split('.');
const token = `${split[0]}.${split[1]}`;
const token2 = token + '.';
jwt.isToken(token).should.be.true;
jwt.isToken(token2).should.be.true;
});
it('considers Base64 (not URL) encoded tokens invalid', function() {
const token = b64u.toBase64(tokens.hs256.token);
jwt.isToken(token).should.be.false;
return jwt.verify(token, tokens.hs256.secret).should.eventually.include({validSignature: false});
});
it('fails to verify invalid tokens ' +
'(logging temporarily disabled to hide exceptions)', function() {
log.disableAll();
const split = tokens.hs256.token.split('.');
const token = `${split[0]}.${split[1]}`;
const token2 = token + '.';
const promises = [
jwt.verify(token, tokens.hs256.secret),
jwt.verify(token2, tokens.hs256.secret),
jwt.verify(tokens.hs256.token, tokens.hs256.secret + 'sdfasdf'),
jwt.verify(tokens.hs256.token, 'sdfsdf' + tokens.hs256.secret),
jwt.verify(tokens.hs256.token, 'sdfsdf'),
jwt.verify(tokens.rs256.token, tokens.rs256.publicKey.replace('a','b')),
jwt.verify(tokens.es256.token, tokens.es256.publicKey.replace('a','b')),
jwt.verify(tokens.ps256.token, tokens.ps256.publicKey.replace('a','b'))
];
const header = {
typ: 'JWT',
alg: 'none'
};
const payload = {
sub: 'test'
};
const token3 = `${b64u.encode(JSON.stringify(header))}.` +
`${b64u.encode(JSON.stringify(payload))}`;
promises.push(jwt.verify(token3, 'whatever'));
promises.push(jwt.verify(token3 + '.', 'whatever'));
promises.push(jwt.verify(token3 + '.' + split[2], 'whatever'));
return Promise.all(promises.map(p => p.then(v => !v.validSignature, e => true)))
.then(all => all.every(v => v))
.finally(() => log.enableAll())
.should.eventually.be.true;
});
for (const [alg, vector] of Object.entries(tokens)) {
let { privateKey, publicKey, jwk } = vector;
if (vector.secret) {
privateKey = publicKey = vector.secret;
}
if (alg !== 'none') {
it(`signs/verifies ${alg.toUpperCase()}`, function () {
const header = { alg: alg.toUpperCase(), iat: Date.now() };
const payload = { sub: 'test' };
// test the default token
return jwt.verify(vector.token, publicKey).should.eventually.include({validSignature: true})
.then(() => {
// test signing
return jwt.sign(header, payload, privateKey).then(token => {
token.should.be.a('string');
const split = token.split('.');
split.should.have.lengthOf(3);
const decoded = jwt.decode(token);
decoded.header.should.deep.equal(header);
decoded.payload.should.deep.equal(payload);
// test verifying just signed token
return jwt.verify(token, publicKey)
.should.eventually.include({validSignature: true});
});
});
});
} else {
it(`encodes/decodes ${alg}`, function () {
const header = { alg, iat: Date.now() };
const payload = { sub: 'test' };
// test the default token
return jwt.verify(vector.token).should.eventually.include({validSignature: false, unsecuredJwt: true})
.then(() => {
// test signing
return jwt.sign(header, payload).then(token => {
token.should.be.a('string');
const split = token.split('.');
split.should.have.lengthOf(3);
const decoded = jwt.decode(token);
decoded.header.should.deep.equal(header);
decoded.payload.should.deep.equal(payload);
// test verifying unsecured jwt
return jwt.verify(token, publicKey)
.should.eventually.include({validSignature: false, unsecuredJwt: true});
});
});
});
}
if (jwk) {
it(`signs/verifies ${alg.toUpperCase()} with a JWK`, function () {
const header = { alg: alg.toUpperCase(), iat: Date.now() };
const payload = { sub: 'test' };
const jsonJWK = JSON.stringify(jwk, null, 4)
// test the default token
return jwt.verify(vector.token, jsonJWK).should.eventually.include({validSignature: true})
.then(() => {
// test signing
return jwt.sign(header, payload, jsonJWK).then(token => {
token.should.be.a('string');
const split = token.split('.');
split.should.have.lengthOf(3);
const decoded = jwt.decode(token);
decoded.header.should.deep.equal(header);
decoded.payload.should.deep.equal(payload);
// test verifying just signed token
return jwt.verify(token, jsonJWK)
.should.eventually.include({validSignature: true});
});
});
});
}
}
it('signs and verifies tokens using a PKCS1 RSA keys', function() {
const header = {
alg: 'RS256'
};
const payload = {
sub: 'test'
};
return new Promise((resolve, reject) => {
generateKeyPair('rsa', {
modulusLength: 2048,
privateKeyEncoding: { format: 'pem', type: 'pkcs1' },
publicKeyEncoding: { format: 'pem', type: 'pkcs1' },
}, (err, publicKey, privateKey) => {
if (err) return reject(err);
return resolve({ publicKey, privateKey });
})
}).then(({ privateKey, publicKey }) => {
return jwt.sign(header, payload, privateKey).then((token) => {
return jwt.verify(token, publicKey).should.eventually.include({validSignature: true});
});
});
});
describe('isValidBase64String', function() {
// Generate random data of different sizes.
const data = [];
for(let i = 0; i < 1000; ++i) {
let bytes = new Uint8Array(i);
randomFillSync(bytes);
bytes = String.fromCharCode.apply(null, bytes);
data.push({
b64: b64u.toBase64(b64u.encode(bytes)),
b64u: b64u.encode(bytes)
});
}
it('detects valid Base64 and Base64URL strings', function() {
data.forEach(d => {
jwt.isValidBase64String(d.b64u).should.be.true;
});
});
it('fails on invalid Base64 and Base64 URL strings', function() {
data.forEach(d => {
if(d.b64.match(/[\+\/=]/)) {
jwt.isValidBase64String(d.b64).should.be.false;
}
});
});
});
});