catch connection errors

git-svn-id: file:///home/svn/framework3/trunk@11537 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Joshua Drake 2011-01-10 20:03:53 +00:00
parent 40fa5eebaf
commit 14617450d0
1 changed files with 2 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class Metasploit3 < Msf::Auxiliary
def initialize(info = {}) def initialize(info = {})
super(update_info(info, super(update_info(info,
'Name' => 'Microsoft IIS FTP Server Encoded Response Overflow', 'Name' => 'Microsoft IIS FTP Server Encoded Response Overflow Trigger',
'Description' => %q{ 'Description' => %q{
This module triggers a heap overflow when processing a specially crafted This module triggers a heap overflow when processing a specially crafted
FTP request containing Telnet IAC (0xff) bytes. When constructing the response, FTP request containing Telnet IAC (0xff) bytes. When constructing the response,
@ -73,6 +73,7 @@ class Metasploit3 < Msf::Auxiliary
sock.put(buf) sock.put(buf)
disconnect disconnect
rescue ::Rex::ConnectionError
end end
end end