Skip to content

Commit 25c3661

Browse files
authored
hotfix: fixed critical scope validation bug for 4.x
Merge pull request #229 from jorenvandeweyer/bugfix/validate-scope-4.x
2 parents 5e4f552 + d2086b0 commit 25c3661

4 files changed

+75
-66
lines changed

lib/grant-types/abstract-grant-type.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -93,18 +93,18 @@ AbstractGrantType.prototype.getScope = function(request) {
9393
/**
9494
* Validate requested scope.
9595
*/
96-
AbstractGrantType.prototype.validateScope = function(user, client, scope) {
96+
AbstractGrantType.prototype.validateScope = function(user, client, requestedScoped) {
9797
if (this.model.validateScope) {
98-
return promisify(this.model.validateScope, 3).call(this.model, user, client, scope)
99-
.then(function (scope) {
100-
if (!scope) {
98+
return promisify(this.model.validateScope, 3).call(this.model, user, client, requestedScoped)
99+
.then(function (validatedScope) {
100+
if (!validatedScope) {
101101
throw new InvalidScopeError('Invalid scope: Requested scope is invalid');
102102
}
103103

104-
return scope;
104+
return validatedScope;
105105
});
106106
} else {
107-
return scope;
107+
return requestedScoped;
108108
}
109109
};
110110

lib/grant-types/authorization-code-grant-type.js

+25-22
Original file line numberDiff line numberDiff line change
@@ -205,28 +205,31 @@ AuthorizationCodeGrantType.prototype.revokeAuthorizationCode = function(code) {
205205
* Save token.
206206
*/
207207

208-
AuthorizationCodeGrantType.prototype.saveToken = function(user, client, authorizationCode, scope) {
209-
const fns = [
210-
this.validateScope(user, client, scope),
211-
this.generateAccessToken(client, user, scope),
212-
this.generateRefreshToken(client, user, scope),
213-
this.getAccessTokenExpiresAt(),
214-
this.getRefreshTokenExpiresAt()
215-
];
216-
217-
return Promise.all(fns)
218-
.bind(this)
219-
.spread(function(scope, accessToken, refreshToken, accessTokenExpiresAt, refreshTokenExpiresAt) {
220-
const token = {
221-
accessToken: accessToken,
222-
authorizationCode: authorizationCode,
223-
accessTokenExpiresAt: accessTokenExpiresAt,
224-
refreshToken: refreshToken,
225-
refreshTokenExpiresAt: refreshTokenExpiresAt,
226-
scope: scope
227-
};
228-
229-
return promisify(this.model.saveToken, 3).call(this.model, token, client, user);
208+
AuthorizationCodeGrantType.prototype.saveToken = function(user, client, authorizationCode, requestedScope) {
209+
return Promise.bind(this)
210+
.then(function() {
211+
return this.validateScope(user, client, requestedScope);
212+
})
213+
.then(function(validatedScoped) {
214+
return Promise.all([
215+
this.generateAccessToken(client, user, validatedScoped),
216+
this.generateRefreshToken(client, user, validatedScoped),
217+
this.getAccessTokenExpiresAt(),
218+
this.getRefreshTokenExpiresAt()
219+
])
220+
.bind(this)
221+
.spread(function(accessToken, refreshToken, accessTokenExpiresAt, refreshTokenExpiresAt) {
222+
const token = {
223+
accessToken: accessToken,
224+
authorizationCode: authorizationCode,
225+
accessTokenExpiresAt: accessTokenExpiresAt,
226+
refreshToken: refreshToken,
227+
refreshTokenExpiresAt: refreshTokenExpiresAt,
228+
scope: validatedScoped
229+
};
230+
231+
return promisify(this.model.saveToken, 3).call(this.model, token, client, user);
232+
});
230233
});
231234
};
232235

lib/grant-types/client-credentials-grant-type.js

+20-17
Original file line numberDiff line numberDiff line change
@@ -84,23 +84,26 @@ ClientCredentialsGrantType.prototype.getUserFromClient = function(client) {
8484
* Save token.
8585
*/
8686

87-
ClientCredentialsGrantType.prototype.saveToken = function(user, client, scope) {
88-
const fns = [
89-
this.validateScope(user, client, scope),
90-
this.generateAccessToken(client, user, scope),
91-
this.getAccessTokenExpiresAt(client, user, scope)
92-
];
93-
94-
return Promise.all(fns)
95-
.bind(this)
96-
.spread(function(scope, accessToken, accessTokenExpiresAt) {
97-
const token = {
98-
accessToken: accessToken,
99-
accessTokenExpiresAt: accessTokenExpiresAt,
100-
scope: scope
101-
};
102-
103-
return promisify(this.model.saveToken, 3).call(this.model, token, client, user);
87+
ClientCredentialsGrantType.prototype.saveToken = function(user, client, requestedScope) {
88+
return Promise.bind(this)
89+
.then(function() {
90+
return this.validateScope(user, client, requestedScope);
91+
})
92+
.then(function(validatedScope) {
93+
return Promise.all([
94+
this.generateAccessToken(client, user, validatedScope),
95+
this.getAccessTokenExpiresAt(client, user, validatedScope)
96+
])
97+
.bind(this)
98+
.spread(function(accessToken, accessTokenExpiresAt) {
99+
const token = {
100+
accessToken: accessToken,
101+
accessTokenExpiresAt: accessTokenExpiresAt,
102+
scope: validatedScope
103+
};
104+
105+
return promisify(this.model.saveToken, 3).call(this.model, token, client, user);
106+
});
104107
});
105108
};
106109

lib/grant-types/password-grant-type.js

+24-21
Original file line numberDiff line numberDiff line change
@@ -102,27 +102,30 @@ PasswordGrantType.prototype.getUser = function(request) {
102102
* Save token.
103103
*/
104104

105-
PasswordGrantType.prototype.saveToken = function(user, client, scope) {
106-
const fns = [
107-
this.validateScope(user, client, scope),
108-
this.generateAccessToken(client, user, scope),
109-
this.generateRefreshToken(client, user, scope),
110-
this.getAccessTokenExpiresAt(),
111-
this.getRefreshTokenExpiresAt()
112-
];
113-
114-
return Promise.all(fns)
115-
.bind(this)
116-
.spread(function(scope, accessToken, refreshToken, accessTokenExpiresAt, refreshTokenExpiresAt) {
117-
const token = {
118-
accessToken: accessToken,
119-
accessTokenExpiresAt: accessTokenExpiresAt,
120-
refreshToken: refreshToken,
121-
refreshTokenExpiresAt: refreshTokenExpiresAt,
122-
scope: scope
123-
};
124-
125-
return promisify(this.model.saveToken, 3).call(this.model, token, client, user);
105+
PasswordGrantType.prototype.saveToken = function(user, client, requestedScope) {
106+
return Promise.bind(this)
107+
.then(function () {
108+
return this.validateScope(user, client,requestedScope);
109+
})
110+
.then(function(validatedScope) {
111+
return Promise.all([
112+
this.generateAccessToken(client, user, validatedScope),
113+
this.generateRefreshToken(client, user, validatedScope),
114+
this.getAccessTokenExpiresAt(),
115+
this.getRefreshTokenExpiresAt()
116+
])
117+
.bind(this)
118+
.spread(function(accessToken, refreshToken, accessTokenExpiresAt, refreshTokenExpiresAt) {
119+
const token = {
120+
accessToken: accessToken,
121+
accessTokenExpiresAt: accessTokenExpiresAt,
122+
refreshToken: refreshToken,
123+
refreshTokenExpiresAt: refreshTokenExpiresAt,
124+
scope: validatedScope
125+
};
126+
127+
return promisify(this.model.saveToken, 3).call(this.model, token, client, user);
128+
});
126129
});
127130
};
128131

0 commit comments

Comments
 (0)