-
Notifications
You must be signed in to change notification settings - Fork 5
/
schema.json
62 lines (62 loc) · 2.22 KB
/
schema.json
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://portswigger.net/",
"title": "Payload",
"description": "URL validation bypass cheat sheet payload schema file",
"type": "object",
"properties": {
"name": {
"description": "Wordlist name",
"type": "string"
},
"payloads": {
"description": "Payloads for the wordlist",
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"description": "The unique identifier for a product",
"type": "string"
},
"payload": {
"description": "Payload string, templates <attacker> and <allowed> can be used to be replaced with user values",
"type": "string"
},
"description": {
"description": "Payload description",
"type": "string"
},
"prefix": {
"description": "Payload prefix: schema",
"type": "string"
},
"suffix": {
"description": "Payload suffix: path",
"type": "string"
},
"port": {
"description": "URL port",
"type": "integer"
},
"tags": {
"description": "Tags for the payload",
"type": "array",
"items": {
"enum": ["URL", "HOST", "CORS"]
}
},
"filters": {
"description": "Filters for the payload",
"type": "array",
"items": {
"type": "string"
}
}
}
},
"required": ["id", "payload", "description", "tags"]
}
},
"required": ["name", "payloads"]
}