Sha256: 1594de4e1fc8d8314aa062131c20eeb1417b7f4d57ea9fe53ed7fb40427c57c1
Contents?: true
Size: 680 Bytes
Versions: 22
Compression:
Stored size: 680 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" 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
22 entries across 22 versions & 1 rubygems