Class: Mdm::VulnAttempt

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

Overview

An attempt to exploit a #vuln.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#attempted_atDateTime

When this attempt was made.

Returns:

  • (DateTime)


# File 'app/models/mdm/vuln_attempt.rb', line 36

#exploitedtrue, false

Whether this attempt was successful.

Returns:

  • (true)

    if #vuln was exploited.

  • (false)

    if #vuln was not exploited.



# File 'app/models/mdm/vuln_attempt.rb', line 41

#fail_detailString?

Long details about why this attempt failed.

Returns:



# File 'app/models/mdm/vuln_attempt.rb', line 47

#fail_reasonString?

Short reason why this attempt failed.

Returns:



# File 'app/models/mdm/vuln_attempt.rb', line 53

#moduleString

Full name of exploit Metasploit Module that was used in this attempt.

Returns:

  • (String)


# File 'app/models/mdm/vuln_attempt.rb', line 59

#usernameString

The name of the user that made this attempt.

Returns:

  • (String)


# File 'app/models/mdm/vuln_attempt.rb', line 64

Instance Method Details

#lootMdm::Loot?

Loot gathered from this attempt.

Returns:



12
13
14
# File 'app/models/mdm/vuln_attempt.rb', line 12

belongs_to :loot,
class_name: 'Mdm::Loot',
inverse_of: :vuln_attempt

#sessionMdm::Session?

The session opened by this attempt.

Returns:



20
21
22
# File 'app/models/mdm/vuln_attempt.rb', line 20

belongs_to :session,
class_name: 'Mdm::Session',
inverse_of: :vuln_attempt

#vulnMdm::Vuln

The vulnerability that this attempt was exploiting.

Returns:



27
28
29
30
# File 'app/models/mdm/vuln_attempt.rb', line 27

belongs_to :vuln,
class_name: 'Mdm::Vuln',
counter_cache: :vuln_attempt_count,
inverse_of: :vuln_attempts