Thanks Rhys

git-svn-id: file:///home/svn/framework3/trunk@4115 4d416f70-5f16-0410-b530-b9f4589650da
unstable
HD Moore 2006-11-07 14:39:13 +00:00
parent 777e70b088
commit 54cef446f9
1 changed files with 3 additions and 3 deletions

View File

@ -13,19 +13,19 @@ module Exploit::Remote::Imap
include Exploit::Remote::Tcp
#
# Creates an instance of an FTP exploit module.
# Creates an instance of an IMAP exploit module.
#
def initialize(info = {})
super
# Register the options that all FTP exploits may make use of.
# Register the options that all IMAP exploits may make use of.
register_options(
[
Opt::RHOST,
Opt::RPORT(143),
OptString.new('IMAPUSER', [ false, 'The username to authenticate as']),
OptString.new('IMAPPASS', [ false, 'The password for the specified username'])
], Msf::Exploit::Remote::Ftp)
], Msf::Exploit::Remote::Imap)
end
#