Sha256: 7ce252e49801c633e720961662d5347a5d2c0dc7cb19554a84aa64de41c9efe3
Contents?: true
Size: 1.35 KB
Versions: 6
Compression:
Stored size: 1.35 KB
Contents
# frozen_string_literal: true require "pulsedive" module Mihari module Analyzers class Pulsedive < Base include Mixins::Refang param :query 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[pulsedive_api_key] end def api @api ||= ::Pulsedive::API.new(Mihari.config.pulsedive_api_key) end # # Check whether a type is valid or not # # @return [Boolean] # def valid_type? %w[ip domain].include? type end # # Search # # @return [Array<Mihari::Artifact>] # def search raise InvalidInputError, "#{query}(type: #{type || "unknown"}) is not supported." unless valid_type? indicator = api.indicator.get_by_value(query) iid = indicator["iid"] properties = api.indicator.get_properties_by_id(iid) (properties["dns"] || []).filter_map do |property| if ["A", "PTR"].include?(property["name"]) nil else data = property["value"] Artifact.new(data: data, source: source, metadata: property) end end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems