-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.js
297 lines (250 loc) · 9.1 KB
/
test.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
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
import assert from 'node:assert/strict'
import {Buffer} from 'node:buffer'
import {afterEach, beforeEach, test} from 'node:test'
import {Camomile} from 'camomile'
import {camo} from 'rehype-github-image'
import {MockAgent, fetch, setGlobalDispatcher} from 'undici'
import {securityHeaders} from './lib/constants.js'
const host = '127.0.0.1'
const port = 1080
const address = 'http://' + host + ':' + port
const secret = 'myVerySecretSecret'
const toProxyUrl = camo(address, secret)
const server = new Camomile({secret}).listen({host, port})
test('camo', async function (t) {
/** @type {MockAgent} */
let mockAgent
afterEach(async function () {
await mockAgent.close()
})
beforeEach(function () {
mockAgent = new MockAgent()
setGlobalDispatcher(mockAgent)
})
await t.test('should expose the public api', async function () {
assert.deepEqual(Object.keys(await import('camomile')).sort(), ['Camomile'])
})
await t.test('should fail w/o secret', async function () {
assert.throws(function () {
// @ts-expect-error: check how missing options are handled.
// eslint-disable-next-line no-new
new Camomile()
}, /Expected `secret` in options/)
})
await t.test('should 403 for url with invalid secret', async function () {
const invalidProxy = camo(address, 'invalid')
const response = await fetch(invalidProxy('http://example.com/index.png'))
assert.equal(response.status, 403)
checkDefaultHeaders(response)
})
await t.test('should 405 for non-head/get', async function () {
const response = await fetch(toProxyUrl('http://example.com/index.png'), {
method: 'DELETE'
})
assert.equal(response.status, 405)
checkDefaultHeaders(response)
})
await t.test('should 404 for url with only the digest', async function () {
const proxyUrl = toProxyUrl('http://example.com/index.png')
const response = await fetch(proxyUrl.slice(0, proxyUrl.lastIndexOf('/')))
assert.equal(response.status, 404)
checkDefaultHeaders(response)
})
await t.test('should 400 for unsupported protocol', async function () {
const response = await fetch(toProxyUrl('file:///etc/passwd'))
assert.equal(response.status, 400)
assert.equal(
await response.text(),
'Unexpected non-http protocol `file:`, expected `http:` or `https:`'
)
checkDefaultHeaders(response)
})
await t.test('should 400 for non-host', async function () {
const response = await fetch(toProxyUrl('http://some-address'))
assert.equal(response.status, 400)
assert.equal(await response.text(), 'Could not look up host `some-address`')
checkDefaultHeaders(response)
})
// Testing all cases of SSRF would be endless, we just test one case to
// make sure the library is used which handles all these cases.
await t.test('should 400 for private IP address as URL', async function () {
// Zero-prefix = octal number -> converted to 192.168.0.1
const response = await fetch(toProxyUrl('http://0300.0250.0.01'))
assert.equal(response.status, 400)
assert.equal(await response.text(), 'Bad url host')
checkDefaultHeaders(response)
})
await t.test('should 400 for empty Content-Type', async function () {
mockAgent
.get('https://avatars.githubusercontent.com')
.intercept({path: '/u/944406'})
.reply(200, Buffer.alloc(1024), {
headers: {'Content-Length': '1024', 'Content-Type': ''}
})
const response = await fetch(
toProxyUrl('https://avatars.githubusercontent.com/u/944406')
)
assert.equal(response.status, 400)
assert.equal(
await response.text(),
'Unexpected missing `Content-type` header in remote server response'
)
checkDefaultHeaders(response)
})
await t.test('should 400 for unsupported Content-Type', async function () {
mockAgent
.get('https://avatars.githubusercontent.com')
.intercept({path: '/u/944406'})
.reply(200, Buffer.alloc(1024), {
headers: {'Content-Length': '1024', 'Content-Type': 'video/mp4'}
})
const response = await fetch(
toProxyUrl('https://avatars.githubusercontent.com/u/944406')
)
assert.equal(response.status, 400)
assert.equal(
await response.text(),
'Unexpected non-image `Content-type` in remote server response, this might not be an image or it might not be supported by camomile'
)
checkDefaultHeaders(response)
})
await t.test(
'should 413 for download over defined max size',
async function () {
const size = 100 * 1024 * 1024 + 1
mockAgent
.get('https://avatars.githubusercontent.com')
.intercept({path: '/u/944406'})
.reply(200, Buffer.alloc(size), {
headers: {'Content-Length': String(size), 'Content-Type': 'image/png'}
})
const response = await fetch(
toProxyUrl('https://avatars.githubusercontent.com/u/944406')
)
assert.equal(response.status, 413)
assert.equal(
await response.text(),
'Unexpected too large `Content-Length`'
)
checkDefaultHeaders(response)
}
)
await t.test('should 204 for HEAD with valid proxy url', async function () {
mockAgent
.get('https://avatars.githubusercontent.com')
.intercept({method: 'HEAD', path: '/u/944406'})
.reply(200, Buffer.alloc(1024), {
headers: {'Content-Length': '1024', 'Content-Type': 'image/png'}
})
const response = await fetch(
toProxyUrl('https://avatars.githubusercontent.com/u/944406'),
{method: 'HEAD'}
)
assert.equal(response.status, 204)
assert.equal(response.headers.get('content-length'), '1024')
assert.equal(response.headers.get('content-type'), 'image/png')
checkDefaultHeaders(response)
})
await t.test(
'should 200 for GET with valid proxy url with filtered headers',
async function () {
mockAgent
.get('https://avatars.githubusercontent.com')
.intercept({method: 'GET', path: '/u/944406'})
.reply(function (request) {
const headers = /** @type {Record<string, string>} */ (
request.headers
)
assert.equal(headers['X-Forwarded-For'], undefined)
assert.equal(headers['Cache-Control'], 'no-cache')
return {
data: Buffer.alloc(1024),
responseOptions: {
headers: {
'Content-Length': '1024',
'Content-Type': 'image/png',
Server: 'iwillbefiltered'
}
},
statusCode: 200
}
})
const response = await fetch(
toProxyUrl('https://avatars.githubusercontent.com/u/944406'),
{
headers: {
'Cache-Control': 'no-cache',
'X-Forwarded-For': '2001:db8:85a3:8d3:1319:8a2e:370:7348'
}
}
)
assert.equal(response.status, 200)
assert.equal(response.headers.get('content-length'), '1024')
assert.equal(response.headers.get('content-type'), 'image/png')
assert.equal(response.headers.get('server'), null)
const blob = await response.blob()
assert.equal(blob.size, 1024)
checkDefaultHeaders(response)
}
)
await t.test(
'should 200 for GET after following two redirects',
async function () {
const pool = mockAgent.get('https://avatars.githubusercontent.com')
pool
.intercept({method: 'GET', path: '/u/944406'})
.reply(302, 'Moved Temporarily', {
headers: {Location: 'https://avatars.githubusercontent.com/redirect1'}
})
pool
.intercept({method: 'GET', path: '/redirect1'})
.reply(302, 'Moved Temporarily', {
headers: {Location: 'https://avatars.githubusercontent.com/redirect2'}
})
pool
.intercept({method: 'GET', path: '/redirect2'})
.reply(200, Buffer.alloc(1024), {
headers: {'Content-Length': '1024', 'Content-Type': 'image/png'}
})
const response = await fetch(
toProxyUrl('https://avatars.githubusercontent.com/u/944406'),
{method: 'GET'}
)
assert.equal(response.status, 200)
assert.equal(response.headers.get('content-length'), '1024')
assert.equal(response.headers.get('content-type'), 'image/png')
checkDefaultHeaders(response)
}
)
await t.test('should 400 for redirect w/o `Location`', async function () {
const pool = mockAgent.get('https://avatars.githubusercontent.com')
pool
.intercept({method: 'GET', path: '/u/944406'})
.reply(302, 'Moved Temporarily')
const response = await fetch(
toProxyUrl('https://avatars.githubusercontent.com/u/944406')
)
assert.equal(response.status, 400)
assert.equal(
await response.text(),
'Unexpected missing `Location` header in redirect response by remote server'
)
checkDefaultHeaders(response)
})
server.close(function (error) {
if (error) {
throw error
}
})
})
/**
* @param {Response} response
* Response.
* @returns {undefined}
* Nothing.
*/
function checkDefaultHeaders(response) {
for (const key of Object.keys(securityHeaders)) {
assert.ok(response.headers.has(key), key)
}
}