Land #3617 from @TomSellers, ftp anon scanner
commit
170c8b699a
|
@ -41,34 +41,61 @@ class Metasploit3 < Msf::Auxiliary
|
|||
|
||||
dir = Rex::Text.rand_text_alpha(8)
|
||||
if res
|
||||
write_check = send_cmd( ['MKD', dir] , true)
|
||||
write_check = send_cmd(['MKD', dir] , true)
|
||||
|
||||
if (write_check and write_check =~ /^2/)
|
||||
if write_check && write_check =~ /^2/
|
||||
send_cmd( ['RMD', dir] , true)
|
||||
|
||||
print_status("#{target_host}:#{rport} Anonymous READ/WRITE (#{banner})")
|
||||
access_type = "rw"
|
||||
print_good("#{target_host}:#{rport} - Anonymous READ/WRITE (#{banner})")
|
||||
access_type = 'Read/Write'
|
||||
else
|
||||
print_status("#{target_host}:#{rport} Anonymous READ (#{banner})")
|
||||
access_type = "ro"
|
||||
print_good("#{target_host}:#{rport} - Anonymous READ (#{banner})")
|
||||
access_type = 'Read-only'
|
||||
end
|
||||
report_auth_info(
|
||||
:host => target_host,
|
||||
:port => rport,
|
||||
:sname => 'ftp',
|
||||
:user => datastore['FTPUSER'],
|
||||
:pass => datastore['FTPPASS'],
|
||||
:type => "password_#{access_type}",
|
||||
:active => true
|
||||
)
|
||||
register_creds(target_host, access_type)
|
||||
end
|
||||
|
||||
disconnect
|
||||
|
||||
rescue ::Interrupt
|
||||
raise $!
|
||||
raise $ERROR_INFO
|
||||
rescue ::Rex::ConnectionError, ::IOError
|
||||
end
|
||||
end
|
||||
|
||||
def register_creds(target_host, access_type)
|
||||
# Build service information
|
||||
service_data = {
|
||||
address: target_host,
|
||||
port: datastore['RPORT'],
|
||||
service_name: 'ftp',
|
||||
protocol: 'tcp',
|
||||
workspace_id: myworkspace_id
|
||||
}
|
||||
|
||||
# Build credential information
|
||||
credential_data = {
|
||||
origin_type: :service,
|
||||
module_fullname: self.fullname,
|
||||
private_data: datastore['FTPPASS'],
|
||||
private_type: :password,
|
||||
username: datastore['FTPUSER'],
|
||||
workspace_id: myworkspace_id
|
||||
}
|
||||
|
||||
credential_data.merge!(service_data)
|
||||
credential_core = create_credential(credential_data)
|
||||
|
||||
# Assemble the options hash for creating the Metasploit::Credential::Login object
|
||||
login_data = {
|
||||
access_level: access_type,
|
||||
core: credential_core,
|
||||
last_attempted_at: DateTime.now,
|
||||
status: Metasploit::Model::Login::Status::SUCCESSFUL,
|
||||
workspace_id: myworkspace_id
|
||||
}
|
||||
|
||||
login_data.merge!(service_data)
|
||||
create_credential_login(login_data)
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue