Sha256: aa9bf958d29c1faba3c67c21c18486ea76ae1b222e721194b84a5f92828697f4
Contents?: true
Size: 691 Bytes
Versions: 6
Compression:
Stored size: 691 Bytes
Contents
# frozen_string_literal: true module Mihari module Commands module Crtsh def self.included(thor) thor.class_eval do desc "crtsh [QUERY]", "crt.sh 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" method_option :exclude_expired, type: :boolean, desc: "exclude expired certificates" def crtsh(query) with_error_handling do run_analyzer Analyzers::Crtsh, query: query, options: options end end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems