forked from tlodderstedt/oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
draft-lodderstedt-oauth-securityconsiderations.xml
343 lines (283 loc) · 15.2 KB
/
draft-lodderstedt-oauth-securityconsiderations.xml
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
<?xml version="1.0" encoding="US-ASCII"?>
<!DOCTYPE rfc SYSTEM "rfc2629.dtd">
<?rfc toc="yes"?>
<?rfc tocompact="yes"?>
<?rfc tocdepth="3"?>
<?rfc tocindent="yes"?>
<?rfc symrefs="yes"?>
<?rfc sortrefs="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="no"?>
<rfc category="std"
docName="draft-lodderstedt-oauth-securityconsiderations-02"
ipr="trust200902">
<front>
<title abbrev="OAuth 2.0 Security Considerations">OAuth 2.0 Security
Considerations</title>
<author fullname="Dr.-Ing. Torsten Lodderstedt" initials="T."
role="editor" surname="Lodderstedt">
<organization>Deutsche Telekom AG</organization>
<address>
<email>torsten@lodderstedt.net</email>
</address>
</author>
<author fullname="Mark McGloin" initials="M." surname="McGloin">
<organization>IBM</organization>
<address>
<email>mark.mcgloin@ie.ibm.com</email>
</address>
</author>
<author fullname="Phil Hunt" initials="P." surname="Hunt">
<organization>Oracle Corporation</organization>
<address>
<email>phil.hunt@yahoo.com</email>
</address>
</author>
<author fullname="Anthony Nadalin" initials="A." surname="Nadalin">
<organization>Microsoft Corporation</organization>
<address>
<email>tonynad@microsoft.com</email>
</address>
</author>
<date day="7" month="April" year="2011" />
<area>Applications Area</area>
<workgroup>Open Authentication Protocol</workgroup>
<keyword>security considerations</keyword>
<keyword>oauth 2.0</keyword>
<abstract>
<t>This document gives security considerations for the OAuth 2.0
protocol. The proposed text is intended to be included into <xref
target="I-D.ietf-oauth-v2"></xref>.</t>
</abstract>
<note title="Requirements Language">
<t>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 <xref
target="RFC2119">RFC 2119</xref>.</t>
</note>
</front>
<middle>
<section title="Definitions">
<t>This document considers the following clients categories:</t>
<t><list style="hanging">
<t hangText="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.</t>
<t hangText="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.</t>
<t hangText="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.</t>
</list></t>
</section>
<section anchor="Security" title="Security Considerations">
<t>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 <xref
target="I-D.lodderstedt-oauth-security"></xref>.</t>
<section title="Client Authentication">
<t>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.</t>
<t>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.</t>
</section>
<section title="Malicious Client Obtains Authorization">
<t>A malicious client could impersonate a valid client and obtain
access to a protected resource.</t>
<t>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.</t>
<t>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.</t>
<t>Authorization servers MUST NOT automatically process (without user
interaction) repeated authorizations without authenticating the
client.</t>
<t>The authorization server SHOULD require clients to pre-register
their redirect_uri's and validate the actual redirect_uri against the
pre-registered value.</t>
<t>It is higly RECOMMENDED that the authorization server limits the
scope of tokens.</t>
</section>
<section title="Access Tokens">
<t>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.</t>
<t>Authorization server as well as application developers MUST ensure
confidentiality of access tokens, on transit and in storage.
Application developers MUST NOT store access tokens in non-persistent
memory.</t>
<t>Authorization servers MUST ensure that access tokens cannot be
manufactured, modified, or guessed.</t>
</section>
<section title="Refresh Tokens">
<t>Authorization servers MAY issue refresh tokens to web and native
applications.</t>
<t>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.</t>
<t>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.</t>
<t>Authorization server as well as application developers MUST ensure
confidentiality of refresh tokens, on transit and in storage.</t>
<t>Authorization servers MUST ensure that refresh tokens cannot be
manufactured, modified, or guessed.</t>
</section>
<section title="Token Scope">
<t>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.</t>
<t>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.</t>
</section>
<section title="Request Confidentiality">
<t>The following security sensitive data elements MUST NOT be
transmitted in clear: access tokens, refresh tokens, resource owner
passwords, authorization codes, and client secrets.</t>
</section>
<section title="Endpoints Authenticity">
<t>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.</t>
<t>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.</t>
<t>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.</t>
</section>
<section title="Online Guessing Attacks">
<t>Authorization servers MUST prevent guessing attacks on the
following credentials: authorization codes, refresh tokens, resource
owner passwords, and client secrets.</t>
<t>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.</t>
</section>
<section title="Phishing Attacks">
<t>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.</t>
<t>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.</t>
</section>
<section title="Authorization Code Disclosure">
<t>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.</t>
<t>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.</t>
<t>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.</t>
</section>
<section title="Session Fixation">
<t>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.</t>
<t>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.</t>
</section>
<section title="Resource Owner Password Credentials">
<t>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.</t>
<t>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.</t>
<t>The authorization server MUST ensure the resource owner's control
and transparency with respect to all authorizations issued to
clients.</t>
<t>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.</t>
<t>The authorization server SHOULD generally restrict the scope of
access tokens issued by this grant type.</t>
</section>
</section>
<section anchor="Acknowledgements" title="Acknowledgements">
<t></t>
</section>
</middle>
<back>
<references title="Normative References">
<?rfc include="reference.RFC.2119"?>
<?rfc include="reference.I-D.ietf-oauth-v2.xml"?>
</references>
<references title="Informative References">
<?rfc include="reference.I-D.lodderstedt-oauth-security.xml"?>
</references>
</back>
</rfc>