Sha256: 615cd8e09e3ff5aadee0d0758c12f833a2e5629393354dee3bcbc492bc875246
Contents?: true
Size: 605 Bytes
Versions: 5
Compression:
Stored size: 605 Bytes
Contents
# frozen_string_literal: true module Mihari module Commands module Shodan def self.included(thor) thor.class_eval do desc "shodan [QUERY]", "Shodan host search by a query" method_option :title, type: :string, desc: "title" method_option :description, type: :string, desc: "description" method_option :tags, type: :array, desc: "tags" def shodan(query) with_error_handling do run_analyzer Analyzers::Shodan, query: query, options: options end end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems