forked from hidracloud/hidra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins_definitions.json
614 lines (614 loc) · 20.8 KB
/
plugins_definitions.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
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
[
{
"name": "dummy",
"description": "Dummy plugin is used to test features",
"step_definitions": {
"doNothing": {
"name": "doNothing",
"description": "Yes, it does nothing.",
"params": []
}
}
},
{
"name": "udp",
"description": "UDP plugin is used to connect to a UDP server",
"step_definitions": {
"connectTo": {
"name": "connectTo",
"description": "Connect to a UDP server",
"params": [
{
"name": "to",
"description": "Host to connect to",
"optional": false
}
]
},
"onClose": {
"name": "onClose",
"description": "Close the connection",
"params": []
},
"read": {
"name": "read",
"description": "Read a file from a FTP server",
"params": [
{
"name": "bytesToRead",
"description": "Number of bytes to read",
"optional": true
}
]
},
"write": {
"name": "write",
"description": "Write a file to a UDP server",
"params": [
{
"name": "data",
"description": "Data to write",
"optional": false
}
]
}
}
},
{
"name": "browser",
"description": "Browser plugin is used to interact with a browser",
"step_definitions": {
"click": {
"name": "click",
"description": "Clicks on an element",
"params": [
{
"name": "selector",
"description": "Selector of the element",
"optional": false
},
{
"name": "selectorBy",
"description": "Selector type",
"optional": true
}
]
},
"navigateTo": {
"name": "navigateTo",
"description": "Navigates to a URL",
"params": [
{
"name": "url",
"description": "URL to navigate to",
"optional": false
}
]
},
"onClose": {
"name": "onClose",
"description": "Close the connection",
"params": []
},
"onFailure": {
"name": "onFailure",
"description": "Close the connection on failure",
"params": []
},
"sendKeys": {
"name": "sendKeys",
"description": "Sends keys to an element",
"params": [
{
"name": "selector",
"description": "Selector of the element",
"optional": false
},
{
"name": "selectorBy",
"description": "Selector type",
"optional": true
},
{
"name": "keys",
"description": "Keys to send",
"optional": false
}
]
},
"setViewPort": {
"name": "setViewPort",
"description": "Sets the viewport size",
"params": [
{
"name": "width",
"description": "Width of the viewport",
"optional": false
},
{
"name": "height",
"description": "Height of the viewport",
"optional": false
}
]
},
"textShouldBe": {
"name": "textShouldBe",
"description": "Checks if the text of an element is the expected one",
"params": [
{
"name": "selector",
"description": "Selector of the element",
"optional": false
},
{
"name": "selectorBy",
"description": "Selector type",
"optional": true
},
{
"name": "text",
"description": "Expected text",
"optional": false
}
]
},
"urlShouldBe": {
"name": "urlShouldBe",
"description": "Checks if the current URL is the expected one",
"params": [
{
"name": "url",
"description": "Expected URL",
"optional": false
}
]
},
"wait": {
"name": "wait",
"description": "Waits for a duration",
"params": [
{
"name": "duration",
"description": "Duration to wait",
"optional": false
}
]
},
"waitVisible": {
"name": "waitVisible",
"description": "Waits for an element to be visible",
"params": [
{
"name": "selector",
"description": "Selector of the element",
"optional": false
},
{
"name": "selectorBy",
"description": "Selector type",
"optional": true
}
]
}
}
},
{
"name": "dns",
"description": "DNS plugin is used to check DNS information",
"step_definitions": {
"dig": {
"name": "dig",
"description": "Ask NS about the domain",
"params": [
{
"name": "ns",
"description": "The NS to ask",
"optional": false
},
{
"name": "type",
"description": "The type of the query",
"optional": false
},
{
"name": "host",
"description": "The host to ask",
"optional": false
}
]
},
"dnsSecShouldBeValid": {
"name": "dnsSecShouldBeValid",
"description": "Checks if the domain has DNSSEC enabled",
"params": [
{
"name": "domain",
"description": "The domain to check if DNSSEC is enabled",
"optional": false
}
]
},
"shouldBeValidFor": {
"name": "shouldBeValidFor",
"description": "Checks if the domain is valid for a given number of duration",
"params": [
{
"name": "for",
"description": "The duration to check if the domain is valid",
"optional": false
},
{
"name": "dateFormat",
"description": "Date format to parse, default is 2006-01-02T15:04:05.999Z",
"optional": true
}
]
},
"whoisFrom": {
"name": "whoisFrom",
"description": "Gets the whois information from a domain",
"params": [
{
"name": "domain",
"description": "The domain to get the whois information",
"optional": false
},
{
"name": "dateFormat",
"description": "Date format to parse, default is 2006-01-02T15:04:05.999Z",
"optional": true
}
]
}
}
},
{
"name": "tls",
"description": "TLS plugin is used to check TLS certificates",
"step_definitions": {
"connectTo": {
"name": "connectTo",
"description": "Connects to a TLS server",
"params": [
{
"name": "to",
"description": "Host to connect to",
"optional": false
}
]
},
"dnsShouldBePresent": {
"name": "dnsShouldBePresent",
"description": "Checks if a DNS record should be present",
"params": [
{
"name": "dns",
"description": "DNS name to check",
"optional": false
}
]
},
"onClose": {
"name": "onClose",
"description": "Close the connection",
"params": []
},
"shouldBeValidFor": {
"name": "shouldBeValidFor",
"description": "Checks if a certificate is valid for a given host",
"params": [
{
"name": "for",
"description": "Duration for which the certificate should be valid",
"optional": false
}
]
}
}
},
{
"name": "tcp",
"description": "TCP plugin is used to connect to a TCP server",
"step_definitions": {
"connectTo": {
"name": "connectTo",
"description": "Connect to a TCP server",
"params": [
{
"name": "to",
"description": "Host to connect to",
"optional": false
}
]
},
"onClose": {
"name": "onClose",
"description": "Close the connection",
"params": []
},
"read": {
"name": "read",
"description": "Read a file from a FTP server",
"params": [
{
"name": "bytesToRead",
"description": "Number of bytes to read",
"optional": true
}
]
},
"write": {
"name": "write",
"description": "Write a file to a TCP server",
"params": [
{
"name": "data",
"description": "Data to write",
"optional": false
}
]
}
}
},
{
"name": "icmp",
"description": "ICMP plugin is used to ping and traceroute hosts",
"step_definitions": {
"ping": {
"name": "ping",
"description": "Ping a host",
"params": [
{
"name": "hostname",
"description": "Hostname to ping",
"optional": false
}
]
},
"traceroute": {
"name": "traceroute",
"description": "Traceroute a host",
"params": [
{
"name": "hostname",
"description": "Hostname to traceroute",
"optional": false
}
]
}
}
},
{
"name": "ftp",
"description": "FTP plugin is used to connect to a FTP server",
"step_definitions": {
"connectTo": {
"name": "connectTo",
"description": "Connect to a FTP server",
"params": [
{
"name": "to",
"description": "Host to connect to",
"optional": false
}
]
},
"delete": {
"name": "delete",
"description": "Delete a file from a FTP server",
"params": [
{
"name": "file",
"description": "File to delete",
"optional": false
}
]
},
"login": {
"name": "login",
"description": "Login to a FTP server",
"params": [
{
"name": "user",
"description": "User to login with",
"optional": false
},
{
"name": "password",
"description": "Password to login with",
"optional": false
}
]
},
"onClose": {
"name": "onClose",
"description": "Close the connection",
"params": []
},
"read": {
"name": "read",
"description": "Read a file from a FTP server",
"params": [
{
"name": "file",
"description": "File to read",
"optional": false
}
]
},
"write": {
"name": "write",
"description": "Write a file to a FTP server",
"params": [
{
"name": "file",
"description": "File to write",
"optional": false
},
{
"name": "data",
"description": "Data to write",
"optional": false
}
]
}
}
},
{
"name": "string",
"description": "String plugin is used to check strings",
"step_definitions": {
"outputShouldContain": {
"name": "outputShouldContain",
"description": "Checks if the output contains a string",
"params": [
{
"name": "search",
"description": "The string to search",
"optional": false
},
{
"name": "times",
"description": "The number of times the string should appear",
"optional": true
}
]
}
}
},
{
"name": "http",
"description": "HTTP plugin is used to make HTTP requests",
"step_definitions": {
"addHTTPHeader": {
"name": "addHTTPHeader",
"description": "Adds a HTTP header to the request. If the header already exists, it will be overwritten",
"params": [
{
"name": "key",
"description": "The header name",
"optional": false
},
{
"name": "value",
"description": "The header value",
"optional": false
}
]
},
"allowInsecureTLS": {
"name": "allowInsecureTLS",
"description": "Allows insecure TLS connections. This is useful for testing purposes, but should not be used in production",
"params": null
},
"bodyShouldContain": {
"name": "bodyShouldContain",
"description": "[DEPRECATED] Please use outputShouldContain from string plugin. Checks if the body contains the expected value",
"params": [
{
"name": "search",
"description": "The expected value",
"optional": false
},
{
"name": "times",
"description": "The number of times the value should appear in the body",
"optional": true
}
]
},
"cacheAgeShouldBeLowerThan": {
"name": "cacheAgeShouldBeLowerThan",
"description": "Checks if the cache age is lower than the expected value",
"params": [
{
"name": "maxAge",
"description": "The max age",
"optional": false
}
]
},
"followRedirects": {
"name": "followRedirects",
"description": "Follows the redirect",
"params": null
},
"forceIP": {
"name": "forceIP",
"description": "Forces the IP address to use for the request",
"params": [
{
"name": "ip",
"description": "The IP address",
"optional": false
}
]
},
"onClose": {
"name": "onClose",
"description": "Executes the steps when the test is finished",
"params": null
},
"onFailure": {
"name": "onFailure",
"description": "Executes the steps if the previous step failed",
"params": null
},
"request": {
"name": "request",
"description": "Makes a HTTP request",
"params": [
{
"name": "method",
"description": "The HTTP method",
"optional": true
},
{
"name": "url",
"description": "The URL",
"optional": false
},
{
"name": "body",
"description": "The body",
"optional": true
}
]
},
"setUserAgent": {
"name": "setUserAgent",
"description": "Sets the User-Agent header",
"params": [
{
"name": "user-agent",
"description": "The User-Agent value",
"optional": false
}
]
},
"shouldRedirectTo": {
"name": "shouldRedirectTo",
"description": "Checks if the response redirects to the expected URL",
"params": [
{
"name": "url",
"description": "The expected URL",
"optional": false
}
]
},
"statusCodeShouldBe": {
"name": "statusCodeShouldBe",
"description": "Checks if the status code is equal to the expected value",
"params": [
{
"name": "statusCode",
"description": "The expected status code",
"optional": false
}
]
}
}
}
]