Sha256: f8b2abb734ca9d7038b8f27ba32d9f325f176756e8762fcf59486e79528bc197
Contents?: true
Size: 612 Bytes
Versions: 22
Compression:
Stored size: 612 Bytes
Contents
# frozen_string_literal: true module Mihari module Commands module DNSTwister def self.included(thor) thor.class_eval do desc "dnstwister [DOMAIN]", "dnstwister search" method_option :title, type: :string, desc: "title" method_option :description, type: :string, desc: "description" method_option :tags, type: :array, desc: "tags" def dnstwister(domain) with_error_handling do run_analyzer Analyzers::DNSTwister, query: domain, options: options end end end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems