Sha256: 61e217897e3611c2db118d8d616b8cc23b497ab69439b4e3a8dd6776779ffcfd
Contents?: true
Size: 1.46 KB
Versions: 9
Compression:
Stored size: 1.46 KB
Contents
# frozen_string_literal: true require "virustotal" module Mihari module Analyzers class VirusTotal < Base include Mixins::Refang param :query option :title, default: proc { "VirusTotal search" } option :description, default: proc { "query = #{query}" } option :tags, default: proc { [] } attr_reader :type def initialize(*args, **kwargs) super @query = refang(query) @type = TypeChecker.type(query) end def artifacts search || [] end private def configuration_keys %w[virustotal_api_key] end def api @api = ::VirusTotal::API.new(key: Mihari.config.virustotal_api_key) end def valid_type? %w[ip domain].include? type end def search case type when "domain" domain_search when "ip" ip_search else raise InvalidInputError, "#{query}(type: #{type || "unknown"}) is not supported." unless valid_type? end end def domain_search res = api.domain.resolutions(query) data = res["data"] || [] data.filter_map do |item| item.dig("attributes", "ip_address") end.uniq end def ip_search res = api.ip_address.resolutions(query) data = res["data"] || [] data.filter_map do |item| item.dig("attributes", "host_name") end.uniq end end end end
Version data entries
9 entries across 9 versions & 1 rubygems