Class: Mdm::Loot

Inherits:
ActiveRecord::Base
  • 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 63

#created_atDateTime

When the loot was created.

Returns:

  • (DateTime)


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

#dataString

Loot data not stored in file at #path.

Returns:

  • (String)


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

#exploit_attemptMdm::ExploitAttempt

Exploit attempt where this loot was gathered.

Returns:



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

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

#hostMdm::Host

The host from which the loot was gathered.

Returns:



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

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

#infoString

Information about the loot.

Returns:

  • (String)


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

#ltypeString

The type of loot

Returns:

  • (String)


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

#nameString

The name of the loot.

Returns:

  • (String)


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

#pathString

The on-disk path to the loot file.

Returns:

  • (String)


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

#serviceMdm::Service

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

Returns:



39
40
41
# File 'app/models/mdm/loot.rb', line 39

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

#updated_atDateTime

The last time the loot was updated.

Returns:

  • (DateTime)


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

#vuln_attemptMdm::VulnAttempt

Vuln attempt that gathered this loot.

Returns:



47
48
49
# File 'app/models/mdm/loot.rb', line 47

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:



55
56
57
# File 'app/models/mdm/loot.rb', line 55

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