Sha256: 02cfb46c704a622eaee23504513b145c0e1c7c8b3981eff0e91ca2f766ced471
Contents?: true
Size: 725 Bytes
Versions: 9
Compression:
Stored size: 725 Bytes
Contents
# frozen_string_literal: true module Mihari module Commands module VirusTotalIntelligence def self.included(thor) thor.class_eval do desc "virustotal_intelligence [QUERY]", "VirusTotal Intelligence search" method_option :title, type: :string, desc: "title" method_option :description, type: :string, desc: "description" method_option :tags, type: :array, desc: "tags" def virustotal_intelligence(query) with_error_handling do run_analyzer Analyzers::VirusTotalIntelligence, query: query, options: options end end map "vt_intel" => :virustotal_intelligence end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems