Sha256: 94cd135bcbf4c806544c59293a59f8983e41b602ad91fc21a68617a72e2c0779
Contents?: true
Size: 1.31 KB
Versions: 7
Compression:
Stored size: 1.31 KB
Contents
# frozen_string_literal: true module Mihari module Analyzers class SecurityTrails < Base include Mixins::Refang # @return [String, nil] attr_reader :type # @return [String, nil] attr_reader :api_key # @return [String] attr_reader :query # # @param [String] query # @param [Hash, nil] options # @param [String, nil] api_key # def initialize(query, options: nil, api_key: nil) super(refang(query), options: options) @type = TypeChecker.type(query) @api_key = api_key || Mihari.config.securitytrails_api_key end def artifacts case type when "domain" client.domain_search query when "ip" client.ip_search query when "mail" client.mail_search query else raise ValueError, "#{query}(type: #{type || "unknown"}) is not supported." unless valid_type? end end def configuration_keys %w[securitytrails_api_key] end private def client @client ||= Clients::SecurityTrails.new(api_key: api_key) end # # Check whether a type is valid or not # # @return [Boolean] # def valid_type? %w[ip domain mail].include? type end end end end
Version data entries
7 entries across 7 versions & 1 rubygems