1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00

I believe I meant 'next', not 'break'

git-svn-id: file:///home/svn/framework3/trunk@13344 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
Wei Chen 2011-07-26 16:25:42 +00:00
parent f15dc33ae6
commit eced6619e9

View File

@ -81,7 +81,7 @@ class Metasploit3 < Msf::Post
users = []
users_key.each do |key|
#Filter out '_aliases'
break if key =~ /_aliases/
next if key =~ /_aliases/
print_status("Grabbing key: #{key}") if datastore['VERBOSE']
@ -192,6 +192,8 @@ class Metasploit3 < Msf::Post
imail_user = datastore['IMAILUSER']
imail_domain = datastore['IMAILDOMAIN']
print_status("Download iMail user information...") if datastore['VERBOSE'] == false
#Download user data. If no user specified, we dump it all.
users = download_info(imail_user, imail_domain)