forked from request/request
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-digest-auth.js
232 lines (212 loc) Β· 6.12 KB
/
test-digest-auth.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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
'use strict'
var http = require('http')
var request = require('../index')
var tape = require('tape')
var crypto = require('crypto')
function makeHeader () {
return [].join.call(arguments, ', ')
}
function makeHeaderRegex () {
return new RegExp('^' + makeHeader.apply(null, arguments) + '$')
}
function md5 (str) {
return crypto.createHash('md5').update(str).digest('hex')
}
var digestServer = http.createServer(function (req, res) {
var ok,
testHeader
if (req.url === '/test/') {
if (req.headers.authorization) {
testHeader = makeHeaderRegex(
'Digest username="test"',
'realm="Private"',
'nonce="WpcHS2/TBAA=dffcc0dbd5f96d49a5477166649b7c0ae3866a93"',
'uri="/test/"',
'qop=auth',
'response="[a-f0-9]{32}"',
'nc=00000001',
'cnonce="[a-f0-9]{32}"',
'algorithm=MD5',
'opaque="5ccc069c403ebaf9f0171e9517f40e41"'
)
if (testHeader.test(req.headers.authorization)) {
ok = true
} else {
// Bad auth header, don't send back WWW-Authenticate header
ok = false
}
} else {
// No auth header, send back WWW-Authenticate header
ok = false
res.setHeader('www-authenticate', makeHeader(
'Digest realm="Private"',
'nonce="WpcHS2/TBAA=dffcc0dbd5f96d49a5477166649b7c0ae3866a93"',
'algorithm=MD5',
'qop="auth"',
'opaque="5ccc069c403ebaf9f0171e9517f40e41"'
))
}
} else if (req.url === '/test/md5-sess') { // RFC 2716 MD5-sess w/ qop=auth
var user = 'test'
var realm = 'Private'
var pass = 'testing'
var nonce = 'WpcHS2/TBAA=dffcc0dbd5f96d49a5477166649b7c0ae3866a93'
var nonceCount = '00000001'
var qop = 'auth'
var algorithm = 'MD5-sess'
if (req.headers.authorization) {
// HA1=MD5(MD5(username:realm:password):nonce:cnonce)
// HA2=MD5(method:digestURI)
// response=MD5(HA1:nonce:nonceCount:clientNonce:qop:HA2)
var cnonce = /cnonce="(.*)"/.exec(req.headers.authorization)[1]
var ha1 = md5(md5(user + ':' + realm + ':' + pass) + ':' + nonce + ':' + cnonce)
var ha2 = md5('GET:/test/md5-sess')
var response = md5(ha1 + ':' + nonce + ':' + nonceCount + ':' + cnonce + ':' + qop + ':' + ha2)
testHeader = makeHeaderRegex(
'Digest username="' + user + '"',
'realm="' + realm + '"',
'nonce="' + nonce + '"',
'uri="/test/md5-sess"',
'qop=' + qop,
'response="' + response + '"',
'nc=' + nonceCount,
'cnonce="' + cnonce + '"',
'algorithm=' + algorithm
)
ok = testHeader.test(req.headers.authorization)
} else {
// No auth header, send back WWW-Authenticate header
ok = false
res.setHeader('www-authenticate', makeHeader(
'Digest realm="' + realm + '"',
'nonce="' + nonce + '"',
'algorithm=' + algorithm,
'qop="' + qop + '"'
))
}
} else if (req.url === '/dir/index.html') {
// RFC2069-compatible mode
// check: http://www.rfc-editor.org/errata_search.php?rfc=2069
if (req.headers.authorization) {
testHeader = makeHeaderRegex(
'Digest username="Mufasa"',
'realm="testrealm@host.com"',
'nonce="dcd98b7102dd2f0e8b11d0f600bfb0c093"',
'uri="/dir/index.html"',
'response="[a-f0-9]{32}"',
'opaque="5ccc069c403ebaf9f0171e9517f40e41"'
)
if (testHeader.test(req.headers.authorization)) {
ok = true
} else {
// Bad auth header, don't send back WWW-Authenticate header
ok = false
}
} else {
// No auth header, send back WWW-Authenticate header
ok = false
res.setHeader('www-authenticate', makeHeader(
'Digest realm="testrealm@host.com"',
'nonce="dcd98b7102dd2f0e8b11d0f600bfb0c093"',
'opaque="5ccc069c403ebaf9f0171e9517f40e41"'
))
}
}
if (ok) {
res.end('ok')
} else {
res.statusCode = 401
res.end('401')
}
})
tape('setup', function (t) {
digestServer.listen(0, function () {
digestServer.url = 'http://localhost:' + this.address().port
t.end()
})
})
tape('with sendImmediately = false', function (t) {
var numRedirects = 0
request({
method: 'GET',
uri: digestServer.url + '/test/',
auth: {
user: 'test',
pass: 'testing',
sendImmediately: false
}
}, function (error, response, body) {
t.equal(error, null)
t.equal(response.statusCode, 200)
t.equal(numRedirects, 1)
t.end()
}).on('redirect', function () {
t.equal(this.response.statusCode, 401)
numRedirects++
})
})
tape('with MD5-sess algorithm', function (t) {
var numRedirects = 0
request({
method: 'GET',
uri: digestServer.url + '/test/md5-sess',
auth: {
user: 'test',
pass: 'testing',
sendImmediately: false
}
}, function (error, response, body) {
t.equal(error, null)
t.equal(response.statusCode, 200)
t.equal(numRedirects, 1)
t.end()
}).on('redirect', function () {
t.equal(this.response.statusCode, 401)
numRedirects++
})
})
tape('without sendImmediately = false', function (t) {
var numRedirects = 0
// If we don't set sendImmediately = false, request will send basic auth
request({
method: 'GET',
uri: digestServer.url + '/test/',
auth: {
user: 'test',
pass: 'testing'
}
}, function (error, response, body) {
t.equal(error, null)
t.equal(response.statusCode, 401)
t.equal(numRedirects, 0)
t.end()
}).on('redirect', function () {
t.equal(this.response.statusCode, 401)
numRedirects++
})
})
tape('with different credentials', function (t) {
var numRedirects = 0
request({
method: 'GET',
uri: digestServer.url + '/dir/index.html',
auth: {
user: 'Mufasa',
pass: 'CircleOfLife',
sendImmediately: false
}
}, function (error, response, body) {
t.equal(error, null)
t.equal(response.statusCode, 200)
t.equal(numRedirects, 1)
t.end()
}).on('redirect', function () {
t.equal(this.response.statusCode, 401)
numRedirects++
})
})
tape('cleanup', function (t) {
digestServer.close(function () {
t.end()
})
})