Class: Mihari::Analyzers::Censys

Inherits:
Base
  • Object
show all
Defined in:
lib/mihari/analyzers/censys.rb

Instance Attribute Summary collapse

Attributes inherited from Base

#ignore_old_artifacts, #ignore_threshold

Instance Method Summary collapse

Methods inherited from Base

inherited, #run, #run_emitter, #source

Methods included from Retriable

#retry_on_error

Methods included from Configurable

#configuration_values, #configured?

Constructor Details

#initialize(query, title: nil, description: nil, tags: [], type: "ipv4") ⇒ Censys

Returns a new instance of Censys.



10
11
12
13
14
15
16
17
18
# File 'lib/mihari/analyzers/censys.rb', line 10

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

  @query = query
  @title = title || "Censys lookup"
  @description = description || "query = #{query}"
  @tags = tags
  @type = type
end

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



8
9
10
# File 'lib/mihari/analyzers/censys.rb', line 8

def description
  @description
end

#queryObject (readonly)

Returns the value of attribute query.



8
9
10
# File 'lib/mihari/analyzers/censys.rb', line 8

def query
  @query
end

#tagsObject (readonly)

Returns the value of attribute tags.



8
9
10
# File 'lib/mihari/analyzers/censys.rb', line 8

def tags
  @tags
end

#titleObject (readonly)

Returns the value of attribute title.



8
9
10
# File 'lib/mihari/analyzers/censys.rb', line 8

def title
  @title
end

#typeObject (readonly)

Returns the value of attribute type.



8
9
10
# File 'lib/mihari/analyzers/censys.rb', line 8

def type
  @type
end

Instance Method Details

#artifactsObject



20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/mihari/analyzers/censys.rb', line 20

def artifacts
  case type
  when "ipv4"
    ipv4_lookup
  when "websites"
    websites_lookup
  when "certificates"
    certificates_lookup
  else
    raise InvalidInputError, "#{type} type is not supported." unless valid_type?
  end
end