Class: Mdm::Loot

Inherits:
ApplicationRecord
  • Object
show all
Defined in:
app/models/mdm/loot.rb

Overview

Loot gathered from #host or #service such as files to prove you were on the system or to crack later to gain sessions on other machines in the network.

Constant Summary collapse

RELATIVE_SEARCH_FIELDS =

CONSTANTS

[
    'ltype',
    'name',
    'info',
    'data'
]

Instance Attribute Summary collapse

Instance Attribute Details

#content_typeString

The mime/content type of the file at #path. Used to server the file correctly so browsers understand whether to render or download the file.

Returns:

  • (String)


# File 'app/models/mdm/loot.rb', line 75

#created_atDateTime

When the loot was created.

Returns:

  • (DateTime)


# File 'app/models/mdm/loot.rb', line 81

#dataString

Loot data not stored in file at #path.

Returns:

  • (String)


# File 'app/models/mdm/loot.rb', line 86

#exploit_attemptMdm::ExploitAttempt

Exploit attempt where this loot was gathered.

Returns:



24
25
26
# File 'app/models/mdm/loot.rb', line 24

has_one :exploit_attempt,
class_name: 'Mdm::ExploitAttempt',
inverse_of: :loot

#hostMdm::Host

The host from which the loot was gathered.

Returns:



32
33
34
# File 'app/models/mdm/loot.rb', line 32

belongs_to :host,
class_name: 'Mdm::Host',
inverse_of: :loots

#infoString

Information about the loot.

Returns:

  • (String)


# File 'app/models/mdm/loot.rb', line 96

#ltypeString

The type of loot

Returns:

  • (String)


# File 'app/models/mdm/loot.rb', line 91

#module_runMetasploitDataModels::ModuleRun

The run of Metasploit content that acquired the loot



40
41
42
43
44
# File 'app/models/mdm/loot.rb', line 40

belongs_to :module_run,
class_name: 'MetasploitDataModels::ModuleRun',
foreign_key: :module_run_id,
optional: true, # allow for manually stored loot?
inverse_of: :loots

#nameString

The name of the loot.

Returns:

  • (String)


# File 'app/models/mdm/loot.rb', line 101

#pathString

The on-disk path to the loot file.

Returns:

  • (String)


# File 'app/models/mdm/loot.rb', line 106

#serviceMdm::Service

The service running on the #host from which the loot was gathered.

Returns:



50
51
52
53
# File 'app/models/mdm/loot.rb', line 50

belongs_to :service,
class_name: 'Mdm::Service',
optional: true,
inverse_of: :loots

#updated_atDateTime

The last time the loot was updated.

Returns:

  • (DateTime)


# File 'app/models/mdm/loot.rb', line 111

#vuln_attemptMdm::VulnAttempt

Vuln attempt that gathered this loot.

Returns:



59
60
61
# File 'app/models/mdm/loot.rb', line 59

has_one :vuln_attempt,
class_name: 'Mdm::VulnAttempt',
inverse_of: :loot

#workspaceMdm::Workspace

The workspace in which the loot is stored and the #host exists.

Returns:



67
68
69
# File 'app/models/mdm/loot.rb', line 67

belongs_to :workspace,
class_name: 'Mdm::Workspace',
inverse_of: :loots