blob: 5c99e21c1ffe64614884c0c229e2019743e9c364 [file] [log] [blame]
Adam Israel33779282016-10-05 09:08:16 -07001nmap:
2 description: "nmap a thing!"
3 params:
4 destination:
5 description: "destination to scan"
6 type: string
7 required:
8 - destination
9ping:
10 description: 'ping a thing!'
11 params:
12 count:
13 description: "Stop after sending count ECHO_REQUEST packets"
14 type: integer
15 default: 30
16 destination:
17 description: "destination of ping request"
18 type: string
19 required:
20 - destination
21traceroute:
22 description: 'trace a thing!'
23 params:
24 hops:
25 description: "Stop tracing after count hops"
26 type: integer
27 default: 30
28 destination:
29 description: "destination of traceroute request"
30 type: string
31 required:
32 - destination
Adam Israel27aa41d2016-10-05 16:27:19 -070033dig:
34 description: "DNS lookup"
35 params:
36 nsserver:
37 description: "The nameserver to lookup against."
38 type: string
39 host:
40 description: "The host to lookup"
41 type: string
42 type:
43 description: "The DNS record type to lookup"
44 type: string
45 required:
46 - host
47