Skip to content

Commit a1affe9

Browse files
committed
added missing validations of sub and jti
1 parent 8aedf2b commit a1affe9

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

index.js

+12
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,18 @@ JWT.verify = function(jwtString, secretOrPublicKey, options, callback) {
258258
return done(new JsonWebTokenError('jwt issuer invalid. expected: ' + options.issuer));
259259
}
260260

261+
if (options.subject) {
262+
if (payload.sub !== options.subject) {
263+
return done(new JsonWebTokenError('jwt subject invalid. expected: ' + options.subject));
264+
}
265+
}
266+
267+
if (options.jwtid) {
268+
if (payload.jti !== options.jwtid) {
269+
return done(new JsonWebTokenError('jwt jwtid invalid. expected: ' + options.jwtid));
270+
}
271+
}
272+
261273
if (options.maxAge) {
262274
var maxAge = ms(options.maxAge);
263275
if (typeof payload.iat !== 'number') {

0 commit comments

Comments
 (0)