Sha256: 9fdde579d0a3b557eb3258efb225b6cbd0b666f545725f2cf9186a294d2c1305
Contents?: true
Size: 650 Bytes
Versions: 22
Compression:
Stored size: 650 Bytes
Contents
# frozen_string_literal: true module Mihari module Commands module CIRCL def self.included(thor) thor.class_eval do desc "circl [DOMAIN|SHA1]", "CIRCL passive DNS/SSL search by a domain or SHA1 certificate fingerprint" method_option :title, type: :string, desc: "title" method_option :description, type: :string, desc: "description" method_option :tags, type: :array, desc: "tags" def circl(query) with_error_handling do run_analyzer Analyzers::CIRCL, query: query, options: options end end end end end end end
Version data entries
22 entries across 22 versions & 1 rubygems