Skip to content
Snippets Groups Projects
actions.yaml 1010 B
Newer Older
israelad's avatar
israelad committed
nmap:
  description: "nmap a thing!"
  params:
    destination:
      description: "destination to scan"
      type: string
  required:
    - destination
ping:
  description: 'ping a thing!'
  params:
    count:
      description: "Stop after sending count ECHO_REQUEST packets"
      type: integer
      default: 30
    destination:
      description: "destination of ping request"
      type: string
  required:
    - destination
traceroute:
  description: 'trace a thing!'
  params:
    hops:
      description: "Stop tracing after count hops"
      type: integer
      default: 30
    destination:
      description: "destination of traceroute request"
      type: string
  required:
    - destination
israelad's avatar
israelad committed
dig:
  description: "DNS lookup"
  params:
    nsserver:
      description: "The nameserver to lookup against."
      type: string
    host:
      description: "The host to lookup"
      type: string
    type:
      description: "The DNS record type to lookup"
      type: string
  required:
    - host