diff --git a/modules/auxiliary/admin/tftp/tftp_upload_file.rb b/modules/auxiliary/admin/tftp/tftp_upload_file.rb index 886d277f34..33afbc8350 100644 --- a/modules/auxiliary/admin/tftp/tftp_upload_file.rb +++ b/modules/auxiliary/admin/tftp/tftp_upload_file.rb @@ -89,11 +89,15 @@ class Metasploit3 < Msf::Auxiliary when /^Sending/, /complete!$/ print_good [rtarget,msg].join else - print_status [rtarget,msg].join if datastore['VERBOSE'] + vprint_status [rtarget,msg].join end end @tftp_client.thread.join end + def cleanup + # Need to kill the server in case of interruption + end + end