summaryrefslogtreecommitdiff
path: root/spec/frontend/notebook/cells/output/html_sanitize_fixtures.js
blob: a886715ce4bf60b7795daf99e5bc33cbb809593f (plain)
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
export default [
  [
    'protocol-based JS injection: simple, no spaces',
    {
      input: `<a href="javascript:alert('XSS');">foo</a>`,
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: simple, spaces before',
    {
      input: `<a href="javascript    :alert('XSS');">foo</a>`,
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: simple, spaces after',
    {
      input: `<a href="javascript:    alert('XSS');">foo</a>`,
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: simple, spaces before and after',
    {
      input: `<a href="javascript    :   alert('XSS');">foo</a>`,
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: preceding colon',
    {
      input: `<a href=":javascript:alert('XSS');">foo</a>`,
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: UTF-8 encoding',
    {
      input: '<a href="javascript&#58;">foo</a>',
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: long UTF-8 encoding',
    {
      input: '<a href="javascript&#0058;">foo</a>',
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: long UTF-8 encoding without semicolons',
    {
      input:
        '<a href=&#0000106&#0000097&#0000118&#0000097&#0000115&#0000099&#0000114&#0000105&#0000112&#0000116&#0000058&#0000097&#0000108&#0000101&#0000114&#0000116&#0000040&#0000039&#0000088&#0000083&#0000083&#0000039&#0000041>foo</a>',
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: hex encoding',
    {
      input: '<a href="javascript&#x3A;">foo</a>',
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: long hex encoding',
    {
      input: '<a href="javascript&#x003A;">foo</a>',
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: hex encoding without semicolons',
    {
      input:
        '<a href=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>foo</a>',
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: null char',
    {
      input: '<a href=java\u0000script:alert("XSS")>foo</a>',
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: invalid URL char',
    { input: '<img src=javascript:alert("XSS")>', output: '<img>' },
  ],
  [
    'protocol-based JS injection: Unicode',
    {
      input: `<a href="\u0001java\u0003script:alert('XSS')">foo</a>`,
      output: '<a>foo</a>',
    },
  ],
  [
    'protocol-based JS injection: spaces and entities',
    {
      input: `<a href=" &#14;  javascript:alert('XSS');">foo</a>`,
      output: '<a>foo</a>',
    },
  ],
  [
    'img on error',
    {
      input: '<img src="x" onerror="alert(document.domain)" />',
      output: '<img src="x">',
    },
  ],
  ['style tags are removed', { input: '<style>.foo {}</style> Foo', output: 'Foo' }],
];