Switch to vprint_status, also add skeletal cleanup def.

unstable
Tod Beardsley 2011-12-16 21:06:10 -06:00
parent 50fa10679b
commit 0b8914021c
1 changed files with 5 additions and 1 deletions

View File

@ -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