Sha256: 78e92e22b8911dc3ed2dc496636a995052a6175cc694c385bb30512480729a2e
Contents?: true
Size: 632 Bytes
Versions: 5
Compression:
Stored size: 632 Bytes
Contents
# frozen_string_literal: true module Mihari module Commands module DNSTwister def self.included(thor) thor.class_eval do desc "dnstwister [DOMAIN]", "dnstwister lookup by a domain" 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: refang(domain), options: options end end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems