Add a rescue for the file download
git-svn-id: file:///home/svn/framework3/trunk@12176 4d416f70-5f16-0410-b530-b9f4589650daunstable
parent
30b25994d7
commit
c0bde3f030
|
@ -227,10 +227,14 @@ class Metasploit3 < Msf::Post
|
|||
print_good("Downloading #{file} file from: #{path}")
|
||||
file = path + "\\" + file
|
||||
fd = session.fs.file.new(file)
|
||||
begin
|
||||
until fd.eof?
|
||||
loot << fd.read
|
||||
end
|
||||
rescue EOFError
|
||||
ensure
|
||||
fd.close
|
||||
end
|
||||
|
||||
ext = file.split('.')[2]
|
||||
if ext == "txt"
|
||||
|
|
Loading…
Reference in New Issue