Class: Mihari::Analyzers::DNSTwister

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

inherited, #run, #run_emitter, #source

Methods included from Retriable

#retry_on_error

Methods included from Configurable

#config_keys, #configuration_status, #configured?

Constructor Details

#initialize(query, title: nil, description: nil, tags: []) ⇒ DNSTwister

Returns a new instance of DNSTwister.



17
18
19
20
21
22
23
24
25
26
# File 'lib/mihari/analyzers/dnstwister.rb', line 17

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

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

  @title = title || "dnstwister domain lookup"
  @description = description || "query = #{query}"
  @tags = tags
end

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



14
15
16
# File 'lib/mihari/analyzers/dnstwister.rb', line 14

def description
  @description
end

#queryObject (readonly)

Returns the value of attribute query.



10
11
12
# File 'lib/mihari/analyzers/dnstwister.rb', line 10

def query
  @query
end

#tagsObject (readonly)

Returns the value of attribute tags.



15
16
17
# File 'lib/mihari/analyzers/dnstwister.rb', line 15

def tags
  @tags
end

#titleObject (readonly)

Returns the value of attribute title.



13
14
15
# File 'lib/mihari/analyzers/dnstwister.rb', line 13

def title
  @title
end

#typeObject (readonly)

Returns the value of attribute type.



11
12
13
# File 'lib/mihari/analyzers/dnstwister.rb', line 11

def type
  @type
end

Instance Method Details

#artifactsObject



28
29
30
# File 'lib/mihari/analyzers/dnstwister.rb', line 28

def artifacts
  lookup || []
end