forked from tlodderstedt/oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
draft-lodderstedt-oauth-securityconsiderations.txt
504 lines (297 loc) · 17.2 KB
/
draft-lodderstedt-oauth-securityconsiderations.txt
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
Open Authentication Protocol T. Lodderstedt, Ed.
Internet-Draft Deutsche Telekom AG
Intended status: Standards Track M. McGloin
Expires: October 9, 2011 IBM
P. Hunt
Oracle Corporation
A. Nadalin
Microsoft Corporation
April 7, 2011
OAuth 2.0 Security Considerations
draft-lodderstedt-oauth-securityconsiderations-02
Abstract
This document gives security considerations for the OAuth 2.0
protocol. The proposed text is intended to be included into
[I-D.ietf-oauth-v2].
Requirements Language
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in RFC 2119 [RFC2119].
Status of this Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at http://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on October 9, 2011.
Copyright Notice
Copyright (c) 2011 IETF Trust and the persons identified as the
document authors. All rights reserved.
Lodderstedt, et al. Expires October 9, 2011 [Page 1]
Internet-Draft OAuth 2.0 Security Considerations April 2011
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents
(http://trustee.ietf.org/license-info) in effect on the date of
publication of this document. Please review these documents
carefully, as they describe your rights and restrictions with respect
to this document. Code Components extracted from this document must
include Simplified BSD License text as described in Section 4.e of
the Trust Legal Provisions and are provided without warranty as
described in the Simplified BSD License.
Table of Contents
1. Definitions . . . . . . . . . . . . . . . . . . . . . . . . . . 3
2. Security Considerations . . . . . . . . . . . . . . . . . . . . 3
2.1. Client Authentication . . . . . . . . . . . . . . . . . . . 3
2.2. Malicious Client Obtains Authorization . . . . . . . . . . 4
2.3. Access Tokens . . . . . . . . . . . . . . . . . . . . . . . 4
2.4. Refresh Tokens . . . . . . . . . . . . . . . . . . . . . . 5
2.5. Token Scope . . . . . . . . . . . . . . . . . . . . . . . . 5
2.6. Request Confidentiality . . . . . . . . . . . . . . . . . . 5
2.7. Endpoints Authenticity . . . . . . . . . . . . . . . . . . 6
2.8. Online Guessing Attacks . . . . . . . . . . . . . . . . . . 6
2.9. Phishing Attacks . . . . . . . . . . . . . . . . . . . . . 6
2.10. Authorization Code Disclosure . . . . . . . . . . . . . . . 6
2.11. Session Fixation . . . . . . . . . . . . . . . . . . . . . 7
2.12. Resource Owner Password Credentials . . . . . . . . . . . . 7
3. Acknowledgements . . . . . . . . . . . . . . . . . . . . . . . 8
4. References . . . . . . . . . . . . . . . . . . . . . . . . . . 8
4.1. Normative References . . . . . . . . . . . . . . . . . . . 8
4.2. Informative References . . . . . . . . . . . . . . . . . . 8
Authors' Addresses . . . . . . . . . . . . . . . . . . . . . . . . 8
Lodderstedt, et al. Expires October 9, 2011 [Page 2]
Internet-Draft OAuth 2.0 Security Considerations April 2011
1. Definitions
This document considers the following clients categories:
Web Application Such an application is installed on a server. End-
users access it via a HTML user interface rendered in the user
agent on the end-user's device. All application data relevant to
the OAuth protocol are stored on the server and is not accessible
by the user.
User Agent-based Application Such an application is downloaded from
a web site and runs within the user agent on the end-user's
device. All application data relevant to the OAuth protocol is
accessible by the user. Since such applications directly reside
within the user agent, they can seamlessly make use of it
capabilities in the end-user authorization process.
Native Application Such an app is installed and runs on an end-
user's device. All application data relevant to the OAuth
protocol is accessible by the user. It is assumed that such
applications can protect dynamically issued secrets, such as
refresh tokens, from eavesdropping by other applications residing
on the same device.
2. Security Considerations
Note: This section focuses on the security guidelines implementors of
the protocol MUST consider. We encourage readers to consult the more
detailed analysis with additional background information in
[I-D.lodderstedt-oauth-security].
2.1. Client Authentication
Authorization servers MAY issue client secrets to web applications
for the purpose of authenticating them. Authorization servers are
encouraged to consider stronger client authentication means.
Application developers MUST ensure confidentiality of client secrets
and other credentials.
Authorization server MUST NOT issue client secrets to native or user
agent-based applications in general. An authorization server MAY
issue a client secret for an installation of a native application on
a specific device. Alternatively, authorization servers MUST utilize
other means than client authentication to achieve their security
objectives.
Lodderstedt, et al. Expires October 9, 2011 [Page 3]
Internet-Draft OAuth 2.0 Security Considerations April 2011
2.2. Malicious Client Obtains Authorization
A malicious client could impersonate a valid client and obtain access
to a protected resource.
Assumption: It is not the task of the authorization server to protect
the end-user's device from malicious software. This is the
responsibility of the platform running on the particular device
probably in cooperation with other components of the respective
ecosystem (e.g. an application management infrastructure). The sole
responsibility of the authorization server is to control access to
the end-user's resources living in resource servers and to prevent
unauthorized access to them. Based on this assumption, the following
countermeasures are recommended.
Where the client can be authenticate, the authorization server MUST
authenticate it. If the authorization server cannot authenticate the
particular impersonated client, the authorization server MUST utilize
other means to achieve its security objectives. The authorization
server MAY enforce explicit user authentication or ask the end-user
for consent. In this context, the user SHALL be explained the
purpose, scope, and duration of the authorization. The authorization
server MUST make the meta-data it associates with the particular
client (e.g. the name) available to the end-user. It is up to the
user to validate the binding of this data to the particular
application and to approve the authorization request.
Authorization servers MUST NOT automatically process (without user
interaction) repeated authorizations without authenticating the
client.
The authorization server SHOULD require clients to pre-register their
redirect_uri's and validate the actual redirect_uri against the pre-
registered value.
It is higly RECOMMENDED that the authorization server limits the
scope of tokens.
2.3. Access Tokens
Access tokens MUST only be accessible to the authorization server,
the resource servers this token is valid for and the client to whom
they have been issued. The only exception is the implicit grant
where the user agent gets access to the access token that is
transmitted in the URI fragment.
Authorization server as well as application developers MUST ensure
confidentiality of access tokens, on transit and in storage.
Lodderstedt, et al. Expires October 9, 2011 [Page 4]
Internet-Draft OAuth 2.0 Security Considerations April 2011
Application developers MUST NOT store access tokens in non-transient
memory.
Authorization servers MUST ensure that access tokens cannot be
manufactured, modified, or guessed.
2.4. Refresh Tokens
Authorization servers MAY issue refresh tokens to web and native
applications.
Refresh tokens MUST only be accessible to the authorization server
and the client to whom they have been issued. The authorization
server MUST maintain the link between a refresh token and the client
to whom it has been issued.
Where the client can be authenticated, this relation between client
and refresh token MUST be validated on every token refreshment
request. If this is not possible, it is RECOMMENDED for
authorization servers to implement other means to detect abuse of
refresh tokens.
Authorization server as well as application developers MUST ensure
confidentiality of refresh tokens, on transit and in storage.
Authorization servers MUST ensure that refresh tokens cannot be
manufactured, modified, or guessed.
2.5. Token Scope
It is strongly RECOMMENDED that application developers only acquire
access tokens with the minimal scope they need in order to implement
the respective application function.
When obtaining end user authorization and where the client requests
scope, the authorization server MAY want to consider whether to
honour that scope based on who/what the client is and the type of
access grant the client asked for. The resource owner MAY also
further restrict the scope of the access tokens.
2.6. Request Confidentiality
The following security sensitive data elements MUST NOT be
transmitted in clear: access tokens, refresh tokens, resource owner
passwords, authorization codes, and client secrets.
Lodderstedt, et al. Expires October 9, 2011 [Page 5]
Internet-Draft OAuth 2.0 Security Considerations April 2011
2.7. Endpoints Authenticity
In order to prevent men-in-the-middle and phishing attacks, HTTPS
with server-side authentication MUST be implemented and used by
authorization servers in all exchanges.
For the same purpose, HTTPS with server-side authentication SHOULD/
MUST [note: this is still subject to a WG discussion] be implemented
and used by web application clients at least on their redirect_uri.
Application developers MUST provide mechanisms to validate the
authorization server endpoint's authenticity and ensure proper
handling of CA certificates as well as certificate chain validation.
2.8. Online Guessing Attacks
Authorization servers MUST prevent guessing attacks on the following
credentials: authorization codes, refresh tokens, resource owner
passwords, and client secrets.
When creating token handles or other secrets not intended for usage
by human users, the authorization server MUST include a reasonable
level of entropy in order to mitigate the risk of guessing attacks.
When creating secrets intended for usage by human users, the
authorization server MUST utilize other means to protect those
secrets.
2.9. Phishing Attacks
It is strongly RECOMMENDED that native application developers use
external browsers instead of browsers embedded in the application for
performing the end-user authorization process. External browsers
offer a familiar usage experience and a trusted environment, in which
users can confirm the authentictity of the site.
To reduce the risk of phishing attacks, authorization servers MUST
support the authentication of their endpoint. For example, they can
utilize HTTPS server authentication for that purpose. Moreover,
service providers should attempt to educate users about the risks
phishing attacks pose, and should provide mechanisms that make it
easy for users to confirm the authenticity of their sites. e.g.
extended validation certificates.
2.10. Authorization Code Disclosure
Confidentiality of authorization codes MUST be ensured on transport.
Note: Since the code is transmitted via browser redirects, it could
also be disclosed through browser histories and HTTP referers.
Lodderstedt, et al. Expires October 9, 2011 [Page 6]
Internet-Draft OAuth 2.0 Security Considerations April 2011
The authorization server and the client MUST ensure that the
authorization code transmission is protected by using channel
security, such as TLS, and that the authorization code is short
lived.
Where the client can be authenticated, the authorization servers MUST
authenticate the client and validate that the authorization code had
been issued to the same client. If the client cannot be
authenticated, authorization servers MUST enforce one time usage of
the authorization code. Moreover, if an authorization server
observes multiple attempts to redeem an authorization code, the
authorization server MAY want to revoke all tokens granted based on
this authorization code.
2.11. Session Fixation
The session fixation attack leverages the authorization code flow in
an attempt to get another user to log-in and authorize access on
behalf of the attacker. The victim, seeing only a normal request
from an expected application, approves the request. The attacker
then uses the victim's authorization to gain access to the
information unknowingly authorized by the victim.
In order to prevent such an attack, authorization servers MUST ensure
that the redirect_uri used in the authorization flow is the same as
the redirect_uri used to exchange the respective authorization code
into tokens. The authorization server operators SHOULD require
client application developers to pre-register their redirect_uri's
and validate the actual redirect_uri against the pre-registered
value.
2.12. Resource Owner Password Credentials
The "Resource Owner Password Credentials" grant type is often used
for legacy/migration reasons. It reduces the overall risk of storing
username and password in the client.
It has higher risk than the other OAuth grant types because it
maintains the password anti-pattern. The client could abuse the
password or the password could unintentionally be disclosed on the
client site e.g. through log files. Additionally, because the user
does not have control over the authorization process, clients could
acquire tokens with much broader scope and longer livetime than
desired by the user.
The authorization server MUST ensure the resource owner's control and
transparency with respect to all authorizations issued to clients.
Lodderstedt, et al. Expires October 9, 2011 [Page 7]
Internet-Draft OAuth 2.0 Security Considerations April 2011
Authorization servers and application developers SHOULD minimize use
of this grant type. Other grant types which facilitate user control
and transparency should be used instead.
The authorization server SHOULD generally restrict the scope of
access tokens issued by this grant type.
3. Acknowledgements
4. References
4.1. Normative References
[I-D.ietf-oauth-v2]
Hammer-Lahav, E., Recordon, D., and D. Hardt, "The OAuth
2.0 Authorization Protocol", draft-ietf-oauth-v2-15 (work
in progress), April 2011.
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119, March 1997.
4.2. Informative References
[I-D.lodderstedt-oauth-security]
Lodderstedt, T., McGloin, M., and P. Hunt, "OAuth 2.0
Threat Model and Security Considerations",
draft-lodderstedt-oauth-security-01 (work in progress),
March 2011.
Authors' Addresses
Dr.-Ing. Torsten Lodderstedt (editor)
Deutsche Telekom AG
Email: torsten@lodderstedt.net
Mark McGloin
IBM
Email: mark.mcgloin@ie.ibm.com
Lodderstedt, et al. Expires October 9, 2011 [Page 8]
Internet-Draft OAuth 2.0 Security Considerations April 2011
Phil Hunt
Oracle Corporation
Email: phil.hunt@yahoo.com
Anthony Nadalin
Microsoft Corporation
Email: tonynad@microsoft.com
Lodderstedt, et al. Expires October 9, 2011 [Page 9]