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
{
"openapi": "3.0.0",
"servers": [
{
"url": "http://localhost/"
}
],
"info": {
"description": "<script type='text/javascript'>alert('vulnerable!');</script>",
"version": "1.0.0",
"title": "API",
"contact": {
"name": "Rapid 7",
"url": "https://www.rapid7.com/",
"email": "info@rapid7.com"
},
"license": {
"name": "BSD-3-clause",
"url": "https://opensource.org/licenses/BSD-3-Clause"
}
},
"tags": [
{
"name": "default"
}
],
"paths": {
"/a": {
"summary": "an example path",
"get": {
"description": "D",
"operationId": "get_a",
"tags": [
"default"
],
"responses": {
"200": {
"description": "E",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/d"
}
}
}
}
}
}
}
},
"components": {
"schemas": {
"d": {
"type": "object",
"description": "F",
"properties": {
"id": {
"type": "integer",
"format": "int64"
}
}
}
}
}
}