Sha256: 803df888efbb5a27f9a2ad2c667e90cfaec36c4159c8151e5aaeb7e5c3d1de6b

Contents?: true

Size: 1.41 KB

Versions: 9

Compression:

Stored size: 1.41 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_password circl_passive_username)
      end

      def api
        @api ||= ::PassiveCIRCL::API.new(username: Mihari.config.circl_passive_username, password: Mihari.config.circl_passive_password)
      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
      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

9 entries across 9 versions & 1 rubygems

Version Path
mihari-1.4.1 lib/mihari/analyzers/circl.rb
mihari-1.4.0 lib/mihari/analyzers/circl.rb
mihari-1.3.2 lib/mihari/analyzers/circl.rb
mihari-1.3.1 lib/mihari/analyzers/circl.rb
mihari-1.3.0 lib/mihari/analyzers/circl.rb
mihari-1.2.1 lib/mihari/analyzers/circl.rb
mihari-1.2.0 lib/mihari/analyzers/circl.rb
mihari-1.1.1 lib/mihari/analyzers/circl.rb
mihari-1.1.0 lib/mihari/analyzers/circl.rb