Class: Msf::Exploit::Remote::SMB::Relay::Target

Inherits:
Object
  • Object
show all
Defined in:
lib/msf/core/exploit/remote/smb/relay/target_list.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(ip:, port:, protocol:, path: nil, drop_mic_only: false, drop_mic_and_sign_key_exch_flags: false) ⇒ Target

Returns a new instance of Target.



67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 67

def initialize(ip:, port:, protocol:, path: nil, drop_mic_only: false, drop_mic_and_sign_key_exch_flags: false)
  @ip = ip
  @port = port
  @protocol = protocol
  @path = path
  @relay_state = Hash.new do |hash, identity|
    hash[identity] = {
      relay_status: nil,
      relay_attempted_at: nil,
      relayed_at: nil,
      relay_attempts: 0
    }
  end
  @drop_mic_only= drop_mic_only
  @drop_mic_and_sign_key_exch_flags = drop_mic_and_sign_key_exch_flags
end

Instance Attribute Details

#drop_mic_and_sign_key_exch_flagsObject (readonly)

Returns the value of attribute drop_mic_and_sign_key_exch_flags.



84
85
86
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 84

def drop_mic_and_sign_key_exch_flags
  @drop_mic_and_sign_key_exch_flags
end

#drop_mic_onlyObject (readonly)

Returns the value of attribute drop_mic_only.



84
85
86
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 84

def drop_mic_only
  @drop_mic_only
end

#ipObject (readonly)

Returns the value of attribute ip.



84
85
86
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 84

def ip
  @ip
end

#pathObject (readonly)

Returns the value of attribute path.



84
85
86
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 84

def path
  @path
end

#portObject (readonly)

Returns the value of attribute port.



84
85
86
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 84

def port
  @port
end

#protocolObject (readonly)

Returns the value of attribute protocol.



84
85
86
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 84

def protocol
  @protocol
end

Instance Method Details

#eligible_relay_target?(identity) ⇒ Boolean

Returns:

  • (Boolean)


86
87
88
89
90
91
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 86

def eligible_relay_target?(identity)
  return true if identity.nil?

  relay_data = relay_data_for(identity)
  relay_data[:relay_status].nil? || relay_data[:relay_status] == :failed
end

#on_relay_end(identity:, is_success:) ⇒ Object



105
106
107
108
109
110
111
112
113
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 105

def on_relay_end(identity:, is_success:)
  relay_data = relay_data_for(identity)
  if is_success
    relay_data[:relay_status] = :success
    relay_data[:relayed_at] = Time.now
  else
    relay_data[:relay_status] = :failed
  end
end

#on_relay_start(identity) ⇒ Object



98
99
100
101
102
103
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 98

def on_relay_start(identity)
  relay_data = relay_data_for(identity)
  relay_data[:relay_attempts] += 1
  relay_data[:relay_attempted_at] = Time.now
  relay_data[:relay_status] = :attempting
end

#relay_attempts_for(identity) ⇒ Object



93
94
95
96
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 93

def relay_attempts_for(identity)
  relay_data = relay_data_for(identity)
  relay_data[:relay_attempts]
end

#to_hObject



115
116
117
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 115

def to_h
  { ip: ip, port: port, protocol: protocol, path: path, relay_state: @relay_state }
end

#to_sObject



119
120
121
122
123
# File 'lib/msf/core/exploit/remote/smb/relay/target_list.rb', line 119

def to_s
  s = "#{protocol}://#{Rex::Socket.to_authority(ip, port)}"
  s << ('/' + path.delete_prefix('/')) unless path.blank?
  s
end