-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathwaf.yaml
629 lines (625 loc) · 17.9 KB
/
waf.yaml
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
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
openapi: 3.0.0
info:
title: Web Application Firewall API
version: 2.0.0
license:
name: MIT
url: https://github.com/aziontech/azionapi-openapi/blob/main/LICENSE.md
servers:
- description: Production
url: https://api.azionapi.net
security:
- tokenAuth: []
paths:
/waf:
get:
tags:
- WAF
summary: List all Web Application Firewalls (WAFs) created in an account
operationId: listAllWAF
parameters:
- in: query
name: page
description: Identifies which page should be returned, if the return is paginated.
schema:
type: integer
format: int64
default: 1
- in: query
name: page_size
description: Identifies how many items should be returned per page.
schema:
type: integer
format: int64
default: 10
responses:
"200":
description: successful operation
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFList200'
"400":
description: Bad request
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents400'
"403":
description: Forbidden
"404":
description: data not found
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents404'
/waf/{waf_id}/domains:
get:
tags:
- WAF
summary: List all domains attached to a Web Application Firewall (WAF) in an account.
operationId: getWAFDomains
parameters:
- in: path
name: waf_id
description: ID of WAF to return
required: true
schema:
type: integer
format: int64
- in: query
name: name
description: searches WAF for name
required: false
schema:
type: string
- in: query
name: page
description: Identifies which page should be returned, if the return is paginated.
schema:
type: integer
format: int64
default: 1
- in: query
name: page_size
description: Identifies how many items should be returned per page.
schema:
type: integer
format: int64
default: 10
responses:
"200":
description: successful operation
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFDomains200'
"400":
description: Bad request
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents400'
"403":
description: Forbidden
"404":
description: data not found
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents404'
/waf/{waf_id}/waf_events:
get:
tags:
- WAF
summary: Find WAF log events
operationId: getWAFEvents
parameters:
- name: waf_id
in: path
description: ID of WAF to return
required: true
schema:
type: integer
format: int64
- name: hour_range
in: query
description: Last log hours since now (it must be a integer number ranging between 1 and 72)
required: true
schema:
type: integer
format: int64
- name: network_list_id
in: query
description: Id of a network list
required: false
schema:
type: integer
format: int64
- name: domains_ids
in: query
description: Multiple domain's id (they must be separated by comma like 1233,1234)
required: true
schema:
type: array
items:
type: integer
format: int64
- name: sort
in: query
required: false
schema:
type: string
enum: [asc, desc]
default: asc
responses:
"200":
description: successful operation
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents200'
"400":
description: Bad request
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents400'
"401":
description: unauthorized operation
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents401'
"403":
description: Forbidden
"404":
description: data not found
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents404'
"500":
description: Internal server error
/waf/rulesets:
get:
tags:
- WAF
summary: list all Rule Sets associated to a Web Application Firewall (WAF) in an account.
operationId: listAllWAFRulesets
parameters:
- in: query
name: order_by
description: Identifies which property the return should be sorted by.
schema:
type: string
enum: [id,name,mode,active,sql_injection,sql_injection_sensitivity,remote_file_inclusion,remote_file_inclusion_sensitivity,directory_traversal,directory_traversal_sensitivity,cross_site_scripting,cross_site_scripting_sensitivity,evading_tricks,evading_tricks_sensitivity,file_upload,file_upload_sensitivity,unwanted_access,unwanted_access_sensitivity,identified_attack,identified_attack_sensitivity]
default: "name"
- in: query
name: sort
description: Defines whether objects are shown in ascending or descending order depending on the value set in order_by.
schema:
type: string
enum: ["asc", "desc"]
default: "asc"
- in: query
name: page
description: Identifies which page should be returned, if the return is paginated.
schema:
type: integer
format: int64
default: 1
- in: query
name: page_size
description: Identifies how many items should be returned per page.
schema:
type: integer
format: int64
default: 10
responses:
"200":
description: successful operation
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFList200'
"400":
description: Bad request
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents400'
"403":
description: Forbidden
"404":
description: data not found
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents404'
post:
summary: Create a new WAF Rule Set in an account.
operationId: createNewWAFRuleset
tags:
- WAF
requestBody:
content:
application/json; version=3:
schema:
allOf:
- $ref: '#/components/schemas/SingleWAF'
- required: [name, mode, active, sql_injection, sql_injection_sensitivity, remote_file_inclusion, remote_file_inclusion_sensitivity, directory_traversal, directory_traversal_sensitivity, cross_site_scripting, cross_site_scripting_sensitivity, evading_tricks, evading_tricks_sensitivity, file_upload, file_upload_sensitivity, unwanted_access, unwanted_access_sensitivity, identified_attack, identified_attack_sensitivity, bypass_addresses]
responses:
"200":
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/SingleWAF'
description: Successful response
"201":
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/SingleWAF'
description: Successful response
"400":
description: Bad Request
"403":
description: Forbidden
"404":
description: Not Found
"415":
description: Unsupported Media Type
"422":
description: Unprocessable Entity
"500":
description: Internal Server Error
/waf/rulesets/{waf_rule_set_id}:
get:
tags:
- WAF
summary: List a specific Rule Set associated to a Web Application Firewall (WAF) in an account.
operationId: getWAFRuleset
parameters:
- in: path
name: waf_rule_set_id
description: ID of WAF Ruleset to return
required: true
schema:
type: integer
format: int64
responses:
"200":
description: successful operation
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFSingle200'
"400":
description: Bad request
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents400'
"403":
description: Forbidden
"404":
description: data not found
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/WAFEvents404'
patch:
summary: Change only select settings of a WAF Rule Set
operationId: updateWAFRuleset
tags:
- WAF
parameters:
- explode: false
in: path
name: waf_rule_set_id
required: true
schema:
type: string
style: simple
requestBody:
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/SingleWAF'
responses:
"200":
content:
application/json; version=3:
schema:
$ref: '#/components/schemas/SingleWAF'
description: Successful response
"400":
description: Bad Request
"403":
description: Forbidden
"404":
description: Not Found
"405":
description: Method Not Allowed
"422":
description: Unprocessable Entity
"500":
description: Internal Server Error
delete:
summary: "Remove an WAF Rule Set from an account. Warning: this action cannot be undone."
operationId: deleteWAFRuleset
tags:
- WAF
parameters:
- explode: false
in: path
name: waf_rule_set_id
required: true
schema:
type: string
style: simple
responses:
"200":
description: Successful response
"400":
description: Bad Request
"403":
description: Forbidden
"404":
description: Not Found
"405":
description: Method Not Allowed
"422":
description: Unprocessable Entity
"500":
description: Internal Server Error
components:
schemas:
WAFSensitivityChoices:
type: string
enum: ["lowest", "low", "medium", "high", "highest"]
Links:
properties:
previous:
type: string
nullable: true
next:
type: string
nullable: true
type: object
SingleWAF:
type: object
example:
id: 28852
name: Waf Name
mode: counting
active: true
sql_injection: true
sql_injection_sensitivity: medium
remote_file_inclusion: true
remote_file_inclusion_sensitivity: medium
directory_traversal: true
directory_traversal_sensitivity: medium
cross_site_scripting: true
cross_site_scripting_sensitivity: medium
evading_tricks: true
evading_tricks_sensitivity: medium
file_upload: true
file_upload_sensitivity: medium
unwanted_access: true
unwanted_access_sensitivity: medium
identified_attack: true
identified_attack_sensitivity: medium
bypass_addresses: []
properties:
id:
type: integer
format: int64
name:
type: string
description: Identification name for WAF Rule Set.
mode:
type: string
enum: [blocking, counting]
active:
type: boolean
sql_injection:
type: boolean
sql_injection_sensitivity:
$ref: '#/components/schemas/WAFSensitivityChoices'
remote_file_inclusion:
type: boolean
remote_file_inclusion_sensitivity:
$ref: '#/components/schemas/WAFSensitivityChoices'
directory_traversal:
type: boolean
directory_traversal_sensitivity:
$ref: '#/components/schemas/WAFSensitivityChoices'
cross_site_scripting:
type: boolean
cross_site_scripting_sensitivity:
$ref: '#/components/schemas/WAFSensitivityChoices'
evading_tricks:
type: boolean
evading_tricks_sensitivity:
$ref: '#/components/schemas/WAFSensitivityChoices'
file_upload:
type: boolean
file_upload_sensitivity:
$ref: '#/components/schemas/WAFSensitivityChoices'
unwanted_access:
type: boolean
unwanted_access_sensitivity:
$ref: '#/components/schemas/WAFSensitivityChoices'
identified_attack:
type: boolean
identified_attack_sensitivity:
$ref: '#/components/schemas/WAFSensitivityChoices'
bypass_addresses:
type: array
items:
type: string
format: ipv4
WAFSingle200:
type: object
properties:
results:
$ref: '#/components/schemas/SingleWAF'
schema_version:
type: integer
format: int64
example: 3
WAFList200:
type: object
properties:
count:
type: integer
format: int64
total_pages:
type: integer
format: int64
links:
$ref: '#/components/schemas/Links'
results:
items:
$ref: '#/components/schemas/SingleWAF'
type: array
schema_version:
type: integer
format: int64
example: 3
WAFDomainList200:
type: object
example:
id: 28852
name: Domain Name
domain: 28852f.ha.azioncdn.net
cnames:
- www.example2.io
- www.example.com
properties:
id:
type: integer
format: int64
name:
type: string
domain:
type: string
cnames:
type: array
items:
type: string
WAFDomains200:
type: object
properties:
count:
type: integer
format: int64
total_pages:
type: integer
format: int64
links:
$ref: '#/components/schemas/Links'
results:
type: array
items:
$ref: '#/components/schemas/WAFDomainList200'
schema_version:
type: integer
format: int64
example: 3
WAFEvents400:
type: object
properties:
errors:
type: array
items:
type: object
example:
message: Bad Request
error: bad_request
properties: {}
schema_version:
type: integer
format: int64
example: 3
WAFEvents404:
type: object
properties:
errors:
type: array
items:
type: object
example:
message: Network List not found
error: not_found
properties: {}
schema_version:
type: integer
format: int64
example: 3
WAFEvents200:
type: object
properties:
results:
type: array
items:
type: object
properties:
country_count:
type: integer
format: int64
top_10_countries:
type: array
items:
oneOf:
- type: string
- type: integer
format: int64
top_10_ips:
type: array
items:
oneOf:
- type: string
- type: integer
format: int64
hit_count:
type: integer
format: int64
rule_id:
type: integer
format: int64
ip_count:
type: integer
format: int64
match_zone:
type: string
enum: [path, query_string, request_header, request_body, raw_body, file_name, cookie]
path_count:
type: integer
format: int64
matches_on:
type: string
enum: [name, value]
rule_description:
type: string
schema_version:
type: integer
format: int64
example: 3
WAFEvents401:
type: object
properties:
detail:
type: string
example:
"Authentication credentials were not provided."
securitySchemes:
tokenAuth:
type: apiKey
name: Authorization
in: header
description: |
You must inform a token to auth.
Usage format: `Token <TOKEN>`