Class: Mihari::Analyzers::VirusTotal

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Base

inherited, #run, #run_emitter

Methods included from Retriable

#retry_on_error

Methods included from Configurable

#configuration_status, #configured?

Constructor Details

#initialize(indicator, title: nil, description: nil, tags: []) ⇒ VirusTotal

Returns a new instance of VirusTotal.



15
16
17
18
19
20
21
22
23
24
# File 'lib/mihari/analyzers/virustotal.rb', line 15

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

  @indicator = indicator
  @type = TypeChecker.type(indicator)

  @title = title || "VirusTotal lookup"
  @description = description || "indicator = #{indicator}"
  @tags = tags
end

Instance Attribute Details

#descriptionObject (readonly)

Returns the value of attribute description.



12
13
14
# File 'lib/mihari/analyzers/virustotal.rb', line 12

def description
  @description
end

#indicatorObject (readonly)

Returns the value of attribute indicator.



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

def indicator
  @indicator
end

#tagsObject (readonly)

Returns the value of attribute tags.



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

def tags
  @tags
end

#titleObject (readonly)

Returns the value of attribute title.



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

def title
  @title
end

#typeObject (readonly)

Returns the value of attribute type.



9
10
11
# File 'lib/mihari/analyzers/virustotal.rb', line 9

def type
  @type
end

Instance Method Details

#artifactsObject



26
27
28
# File 'lib/mihari/analyzers/virustotal.rb', line 26

def artifacts
  lookup || []
end