-
-
Notifications
You must be signed in to change notification settings - Fork 388
Expand file tree
/
Copy pathentities_security_spec.js
More file actions
587 lines (484 loc) · 18.6 KB
/
Copy pathentities_security_spec.js
File metadata and controls
587 lines (484 loc) · 18.6 KB
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
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
import { XMLParser } from "../src/fxp.js";
describe("XMLParser entity expansion security", function () {
// =================================================================
// MAX ENTITY SIZE TESTS
// =================================================================
describe("maxEntitySize limit", function () {
it("should throw error when entity size exceeds maxEntitySize", function () {
const entity = 'A'.repeat(15000);
const xmlData = `<!DOCTYPE foo [<!ENTITY big "${entity}">]><root>&big;</root>`;
const options = {
processEntities: {
maxEntitySize: 10000
}
};
const parser = new XMLParser(options);
expect(function () {
parser.parse(xmlData);
}).toThrowError(/Entity "big" size .* exceeds maximum allowed size/);
});
it("should allow entity within maxEntitySize", function () {
const entity = 'A'.repeat(5000);
const xmlData = `<!DOCTYPE foo [<!ENTITY big "${entity}">]><root>&big;</root>`;
const options = {
processEntities: {
maxEntitySize: 10000
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root).toEqual(entity);
});
it("should use default maxEntitySize of 10000", function () {
const entity = 'A'.repeat(15000);
const xmlData = `<!DOCTYPE foo [<!ENTITY big "${entity}">]><root>&big;</root>`;
const options = {
processEntities: {} // Use defaults
};
const parser = new XMLParser(options);
expect(function () {
parser.parse(xmlData);
}).toThrowError(/Entity "big" size .* exceeds maximum allowed size/);
});
});
// =================================================================
// MAX TOTAL EXPANSIONS TESTS
// =================================================================
describe("maxTotalExpansions limit", function () {
it("should throw error when total expansions exceed limit", function () {
const entity = 'A'.repeat(10);
const refs = '&big;'.repeat(1500); // 1500 expansions
const xmlData = `<!DOCTYPE foo [<!ENTITY big "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxTotalExpansions: 1000
}
};
const parser = new XMLParser(options);
expect(function () {
parser.parse(xmlData);
}).toThrowError(/Entity expansion limit exceeded/);
});
it("should allow expansions within limit", function () {
const entity = 'A'.repeat(10);
const refs = '&big;'.repeat(500); // 500 expansions
const xmlData = `<!DOCTYPE foo [<!ENTITY big "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxTotalExpansions: 1000
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root).toEqual('A'.repeat(5000));
});
it("should count expansions across multiple tags", function () {
const entity = 'X';
const refs = '&e;'.repeat(600);
const xmlData = `<!DOCTYPE root [<!ENTITY e "${entity}">]>
<root>
<tag1>${refs}</tag1>
<tag2>${refs}</tag2>
</root>`;
const options = {
processEntities: {
maxTotalExpansions: 1000
}
};
const parser = new XMLParser(options);
expect(function () {
parser.parse(xmlData);
}).toThrowError(/Entity expansion limit exceeded/);
});
});
// =================================================================
// MAX EXPANDED LENGTH TESTS
// =================================================================
describe("maxExpandedLength limit", function () {
it("should throw error when expanded content exceeds maxExpandedLength", function () {
const entity = 'A'.repeat(1000);
const refs = '&big;'.repeat(150); // 150 * 1000 = 150,000 chars
const xmlData = `<!DOCTYPE foo [<!ENTITY big "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxExpandedLength: 100000
}
};
const parser = new XMLParser(options);
expect(function () {
parser.parse(xmlData);
}).toThrowError(/Total expanded content size exceeded/);
});
it("should allow expansions within maxExpandedLength", function () {
const entity = 'A'.repeat(100);
const refs = '&big;'.repeat(500); // 500 * 100 = 50,000 chars
const xmlData = `<!DOCTYPE foo [<!ENTITY big "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxExpandedLength: 100000
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root).toEqual('A'.repeat(50000));
});
});
// =================================================================
// BILLION LAUGHS ATTACK PREVENTION
// =================================================================
describe("Billion laughs attack prevention", function () {
it("should prevent billion laughs attack with maxEntitySize", function () {
const entity = 'A'.repeat(50000);
const refs = '&big;'.repeat(100); // Would be 5MB but blocked at definition
const xmlData = `<!DOCTYPE foo [<!ENTITY big "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxEntitySize: 10000
}
};
const parser = new XMLParser(options);
expect(function () {
parser.parse(xmlData);
}).toThrowError(/Entity "big" size .* exceeds maximum allowed size/);
});
it("should prevent billion laughs with maxTotalExpansions", function () {
const entity = 'A'.repeat(100);
const refs = '&big;'.repeat(5000); // Too many expansions
const xmlData = `<!DOCTYPE foo [<!ENTITY big "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxTotalExpansions: 1000
}
};
const parser = new XMLParser(options);
expect(function () {
parser.parse(xmlData);
}).toThrowError(/Entity expansion limit exceeded/);
});
it("should prevent billion laughs with maxExpandedLength", function () {
const entity = 'A'.repeat(1000);
const refs = '&big;'.repeat(200); // 200KB output
const xmlData = `<!DOCTYPE foo [<!ENTITY big "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxExpandedLength: 100000
}
};
const parser = new XMLParser(options);
expect(function () {
parser.parse(xmlData);
}).toThrowError(/Total expanded content size exceeded/);
});
});
// =================================================================
// TAG FILTERING - ALLOWEDTAGS TESTS
// =================================================================
describe("allowedTags filtering", function () {
it("should only expand entities in allowed tags", function () {
const xmlData = `<!DOCTYPE root [<!ENTITY test "REPLACED">]>
<root>
<allowed>&test;</allowed>
<blocked>&test;</blocked>
</root>`;
const options = {
processEntities: {
allowedTags: ['allowed']
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root.allowed).toEqual("REPLACED");
expect(result.root.blocked).toEqual("&test;");
});
it("should expand entities in all tags when allowedTags is null", function () {
const xmlData = `<!DOCTYPE root [<!ENTITY test "REPLACED">]>
<root>
<tag1>&test;</tag1>
<tag2>&test;</tag2>
</root>`;
const options = {
processEntities: {
allowedTags: null
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root.tag1).toEqual("REPLACED");
expect(result.root.tag2).toEqual("REPLACED");
});
it("should work with multiple allowed tags", function () {
const xmlData = `<!DOCTYPE root [<!ENTITY test "OK">]>
<root>
<description>&test;</description>
<content>&test;</content>
<script>&test;</script>
</root>`;
const options = {
processEntities: {
allowedTags: ['description', 'content']
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root.description).toEqual("OK");
expect(result.root.content).toEqual("OK");
expect(result.root.script).toEqual("&test;");
});
});
// =================================================================
// TAG FILTERING - TAGFILTER FUNCTION TESTS
// =================================================================
describe("tagFilter function", function () {
it("should use custom filter function to control entity expansion", function () {
const xmlData = `<!DOCTYPE root [<!ENTITY test "REPLACED">]>
<root>
<safe>&test;</safe>
<script>&test;</script>
<code>&test;</code>
</root>`;
const options = {
processEntities: {
tagFilter: (tagName, jPath) => {
return !['script', 'code'].includes(tagName);
}
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root.safe).toEqual("REPLACED");
expect(result.root.script).toEqual("&test;");
expect(result.root.code).toEqual("&test;");
});
it("should pass jPath to tagFilter function", function () {
const xmlData = `<!DOCTYPE root [<!ENTITY test "OK">]>
<root>
<level1>
<dangerous>&test;</dangerous>
</level1>
<safe>&test;</safe>
</root>`;
const options = {
processEntities: {
tagFilter: (tagName, jPath) => {
// Block expansion in nested dangerous paths
return !jPath.includes('level1.dangerous');
}
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root.safe).toEqual("OK");
expect(result.root.level1.dangerous).toEqual("&test;");
});
});
// =================================================================
// PERFORMANCE OPTIMIZATION TESTS
// =================================================================
describe("Performance optimization", function () {
it("should skip entity processing when no ampersand present", function () {
const xmlData = `<root>
<tag1>No entities here</tag1>
<tag2>Just plain text</tag2>
<tag3>More text without entities</tag3>
</root>`;
const options = {
processEntities: true
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root.tag1).toEqual("No entities here");
expect(result.root.tag2).toEqual("Just plain text");
expect(result.root.tag3).toEqual("More text without entities");
});
it("should process standard entities correctly", function () {
const xmlData = `<root>
<tag1><test></tag1>
<tag2>& " '</tag2>
</root>`;
const options = {
processEntities: true
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root.tag1).toEqual("<test>");
expect(result.root.tag2).toEqual('& " \'');
});
});
// =================================================================
// COMBINED LIMITS TESTS
// =================================================================
describe("Combined security limits", function () {
it("should work with all limits configured", function () {
const entity = 'A'.repeat(100);
const refs = '&e;'.repeat(50);
const xmlData = `<!DOCTYPE root [<!ENTITY e "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxEntitySize: 1000,
maxTotalExpansions: 100,
maxExpandedLength: 10000,
allowedTags: ['root']
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root).toEqual('A'.repeat(5000));
});
it("should enforce strictest applicable limit", function () {
const entity = 'X'.repeat(100);
const refs = '&e;'.repeat(200); // Would be 20,000 chars
const xmlData = `<!DOCTYPE root [<!ENTITY e "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxEntitySize: 1000, // OK (100 < 1000)
maxTotalExpansions: 1000, // OK (200 < 1000)
maxExpandedLength: 10000 // FAIL (20000 > 10000)
}
};
const parser = new XMLParser(options);
expect(function () {
parser.parse(xmlData);
}).toThrowError(/Total expanded content size exceeded/);
});
});
// =================================================================
// ENTITY IN ATTRIBUTES TESTS
// =================================================================
describe("Entities in attributes", function () {
it("should expand entities in attributes when enabled", function () {
const xmlData = `<!DOCTYPE root [<!ENTITY test "value">]>
<root attr="&test;">text</root>`;
const options = {
ignoreAttributes: false,
processEntities: true
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root["@_attr"]).toEqual("value");
});
it("should respect limits for entities in attributes", function () {
const entity = 'A'.repeat(100);
const refs = '&e;'.repeat(50);
const xmlData = `<!DOCTYPE root [<!ENTITY e "${entity}">]>
<root attr="${refs}">text</root>`;
const options = {
ignoreAttributes: false,
processEntities: {
maxTotalExpansions: 100
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root["@_attr"]).toEqual('A'.repeat(5000));
});
});
// =================================================================
// EDGE CASES
// =================================================================
describe("Edge cases", function () {
it("should handle empty entity definitions", function () {
const xmlData = `<!DOCTYPE root [<!ENTITY empty "">]>
<root>∅test</root>`;
const options = {
processEntities: true
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root).toEqual("test");
});
it("should handle multiple different entities", function () {
const xmlData = `<!DOCTYPE root [
<!ENTITY e1 "AAA">
<!ENTITY e2 "BBB">
<!ENTITY e3 "CCC">
]><root>&e1;&e2;&e3;</root>`;
const options = {
processEntities: true
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root).toEqual("AAABBBCCC");
});
it("should reset counters between parse calls", function () {
const entity = 'X';
const refs = '&e;'.repeat(600);
const xmlData = `<!DOCTYPE root [<!ENTITY e "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxTotalExpansions: 1000
}
};
const parser = new XMLParser(options);
// First parse should succeed
const result1 = parser.parse(xmlData);
expect(result1.root).toEqual('X'.repeat(600));
// Second parse should also succeed (counters reset)
const result2 = parser.parse(xmlData);
expect(result2.root).toEqual('X'.repeat(600));
});
it("should handle entity expansion with enabled: false", function () {
const xmlData = `<!DOCTYPE root [<!ENTITY test "value">]>
<root>&test;</root>`;
const options = {
processEntities: {
enabled: false
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root).toEqual("&test;");
});
it("should work with small limits for strict security", function () {
const entity = 'A'.repeat(50);
const refs = '&e;'.repeat(10);
const xmlData = `<!DOCTYPE root [<!ENTITY e "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxEntitySize: 100,
maxTotalExpansions: 20,
maxExpandedLength: 1000
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root).toEqual('A'.repeat(500));
});
});
// =================================================================
// CONFIGURATION VALIDATION TESTS
// =================================================================
describe("Configuration normalization", function () {
it("should normalize boolean true to object with enabled: true", function () {
const xmlData = `<!DOCTYPE root [<!ENTITY test "value">]><root>&test;</root>`;
const options = {
processEntities: true
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root).toEqual("value");
});
it("should normalize boolean false to object with enabled: false", function () {
const xmlData = `<!DOCTYPE root [<!ENTITY test "value">]><root>&test;</root>`;
const options = {
processEntities: false
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
expect(result.root).toEqual("&test;");
});
it("should merge partial config with defaults", function () {
const entity = 'A'.repeat(100);
const refs = '&e;'.repeat(50);
const xmlData = `<!DOCTYPE root [<!ENTITY e "${entity}">]><root>${refs}</root>`;
const options = {
processEntities: {
maxEntitySize: 200 // Only set one option
}
};
const parser = new XMLParser(options);
const result = parser.parse(xmlData);
// Should use defaults for other limits
expect(result.root).toEqual('A'.repeat(5000));
});
});
});