Sha256: 061f5d820a6fd01a2ced64dc81759dd3e12b5d9ad09daf02986299ab72115dbb
Contents?: true
Size: 661 Bytes
Versions: 6
Compression:
Stored size: 661 Bytes
Contents
# frozen_string_literal: true module Mihari module Commands module ReverseWhois def self.included(thor) thor.class_eval do desc "reverse_whois [EMAIL]", "Cross search with reverse whois services by an email" method_option :title, type: :string, desc: "title" method_option :description, type: :string, desc: "description" method_option :tags, type: :array, desc: "tags" def reverse_whois(query) with_error_handling do run_analyzer Analyzers::ReveseWhois, query: refang(query), options: options end end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems