Sha256: 235c6547eafa077f64a59e83725271e317db0ee581375b2d61938b7cd8f826ed

Contents?: true

Size: 1.37 KB

Versions: 6

Compression:

Stored size: 1.37 KB

Contents

# frozen_string_literal: true

require "passive_circl"

module Mihari
  module Analyzers
    class CIRCL < Base
      attr_reader :title
      attr_reader :description
      attr_reader :tags

      def initialize(query, title: nil, description: nil, tags: [])
        super()

        @query = query
        @type = TypeChecker.type(query)

        @title = title || "CIRCL passive lookup"
        @description = description || "query = #{query}"
        @tags = tags
      end

      def artifacts
        lookup || []
      end

      private

      def config_keys
        %w(CIRCL_PASSIVE_USERNAME CIRCL_PASSIVE_PASSWORD)
      end

      def api
        @api ||= ::PassiveCIRCL::API.new
      end

      def lookup
        case @type
        when "domain"
          passive_dns_lookup
        when "hash"
          passive_ssl_lookup
        else
          raise InvalidInputError, "#{@query}(type: #{@type || 'unknown'}) is not supported."
        end
      rescue ::PassiveCIRCL::Error => _e
        nil
      end

      def passive_dns_lookup
        results = api.dns.query(@query)
        results.map do |result|
          type = result.dig("rrtype")
          type == "A" ? result.dig("rdata") : nil
        end.compact.uniq
      end

      def passive_ssl_lookup
        result = api.ssl.cquery(@query)
        seen = result.dig("seen") || []
        seen.uniq
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
mihari-0.17.0 lib/mihari/analyzers/circl.rb
mihari-0.16.0 lib/mihari/analyzers/circl.rb
mihari-0.15.0 lib/mihari/analyzers/circl.rb
mihari-0.14.0 lib/mihari/analyzers/circl.rb
mihari-0.13.2 lib/mihari/analyzers/circl.rb
mihari-0.13.1 lib/mihari/analyzers/circl.rb