refactor afp_login
parent
96e492f572
commit
539f30e720
|
@ -5,6 +5,8 @@
|
|||
|
||||
require 'msf/core'
|
||||
require 'openssl'
|
||||
require 'metasploit/framework/credential_collection'
|
||||
require 'metasploit/framework/login_scanner/afp'
|
||||
|
||||
class Metasploit3 < Msf::Auxiliary
|
||||
|
||||
|
@ -41,83 +43,70 @@ class Metasploit3 < Msf::Auxiliary
|
|||
|
||||
def run_host(ip)
|
||||
print_status("Scanning IP: #{ip.to_s}")
|
||||
begin
|
||||
|
||||
connect
|
||||
info = get_info # get_info drops connection
|
||||
raise "Unsupported AFP version" unless info[:uams].include?("DHCAST128")
|
||||
cred_collection = Metasploit::Framework::CredentialCollection.new(
|
||||
blank_passwords: datastore['BLANK_PASSWORDS'],
|
||||
pass_file: datastore['PASS_FILE'],
|
||||
password: datastore['PASSWORD'],
|
||||
user_file: datastore['USER_FILE'],
|
||||
userpass_file: datastore['USERPASS_FILE'],
|
||||
username: datastore['USERNAME'],
|
||||
user_as_pass: datastore['USER_AS_PASS'],
|
||||
)
|
||||
|
||||
if datastore['CHECK_GUEST'] && info[:uams].include?("No User Authent")
|
||||
connect
|
||||
open_session
|
||||
do_guest_login
|
||||
close_session
|
||||
end
|
||||
scanner = Metasploit::Framework::LoginScanner::AFP.new(
|
||||
host: ip,
|
||||
port: rport,
|
||||
proxies: datastore['PROXIES'],
|
||||
cred_details: cred_collection,
|
||||
stop_on_success: datastore['STOP_ON_SUCCESS'],
|
||||
connection_timeout: 30
|
||||
)
|
||||
|
||||
each_user_pass do |user, pass|
|
||||
if user == ''
|
||||
return :skip_user # check guest login once per host
|
||||
end
|
||||
service_data = {
|
||||
address: ip,
|
||||
port: rport,
|
||||
service_name: 'afp',
|
||||
protocol: 'tcp',
|
||||
workspace_id: myworkspace_id
|
||||
}
|
||||
|
||||
vprint_status("Trying to login as '#{user}' with password '#{pass}'")
|
||||
connect
|
||||
open_session
|
||||
status = do_login(user, pass)
|
||||
close_session # close_session drops connection
|
||||
scanner.scan! do |result|
|
||||
if result.success?
|
||||
credential_data = {
|
||||
module_fullname: self.fullname,
|
||||
origin_type: :service,
|
||||
private_data: result.credential.private,
|
||||
private_type: :password,
|
||||
username: result.credential.public
|
||||
}
|
||||
credential_data.merge!(service_data)
|
||||
|
||||
status
|
||||
end
|
||||
rescue ::Timeout::Error
|
||||
raise $!
|
||||
rescue ::Interrupt
|
||||
raise $!
|
||||
rescue ::Rex::ConnectionError, ::IOError, ::Errno::ECONNRESET, ::Errno::ENOPROTOOPT
|
||||
rescue ::Exception
|
||||
print_error("#{rhost}:#{rport} #{$!.class} #{$!}")
|
||||
ensure
|
||||
close_session if sock
|
||||
disconnect
|
||||
end
|
||||
end
|
||||
credential_core = create_credential(credential_data)
|
||||
|
||||
def do_login(user, pass)
|
||||
status = login(user, pass)
|
||||
login_data = {
|
||||
core: credential_core,
|
||||
last_attempted_at: DateTime.now,
|
||||
status: Metasploit::Credential::Login::Status::SUCCESSFUL
|
||||
}
|
||||
login_data.merge!(service_data)
|
||||
|
||||
if status == true
|
||||
status = :next_user
|
||||
print_good("#{rhost} - SUCCESSFUL LOGIN '#{user}' : '#{pass}'")
|
||||
report_auth_info({
|
||||
:host => rhost,
|
||||
:port => rport,
|
||||
:sname => 'afp',
|
||||
:user => user,
|
||||
:pass => pass,
|
||||
:source_type => 'user_supplied',
|
||||
:active => true
|
||||
})
|
||||
end
|
||||
return status
|
||||
end
|
||||
|
||||
def do_guest_login
|
||||
status = login('', '')
|
||||
if status
|
||||
status = :next_user
|
||||
print_good("#{rhost} Supports Guest logins")
|
||||
|
||||
if datastore['RECORD_GUEST']
|
||||
report_auth_info(
|
||||
:host => rhost,
|
||||
:port => rport,
|
||||
:sname => 'atp',
|
||||
:user => '',
|
||||
:pass => '',
|
||||
:type => "Guest Login",
|
||||
:source_type => "user_supplied",
|
||||
:active => true
|
||||
)
|
||||
create_credential_login(login_data)
|
||||
print_good "#{ip}:#{rport} - LOGIN SUCCESSFUL: #{result.credential}"
|
||||
else
|
||||
invalidate_login(
|
||||
address: ip,
|
||||
port: rport,
|
||||
protocol: 'tcp',
|
||||
public: result.credential.public,
|
||||
private: result.credential.private,
|
||||
realm_key: nil,
|
||||
realm_value: nil,
|
||||
status: result.status)
|
||||
print_status "#{ip}:#{rport} - LOGIN FAILED: #{result.credential} (#{result.status}: #{result.proof})"
|
||||
end
|
||||
end
|
||||
return status
|
||||
end
|
||||
|
||||
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue