Land #11493, file: RHOSTS fix for aux modules

master 5.0.9
William Vu 2019-02-27 21:06:53 -06:00
commit 14a7fbe4cc
No known key found for this signature in database
GPG Key ID: 68BD00CE25866743
1 changed files with 12 additions and 12 deletions

View File

@ -123,24 +123,24 @@ class Auxiliary
jobify = true jobify = true
end end
if mod.datastore['RHOSTS'] rhosts = datastore['RHOSTS']
rhosts_range = Rex::Socket::RangeWalker.new(mod.datastore['RHOSTS'])
unless rhosts_range && rhosts_range.length
print_error("Auxiliary failed: option RHOSTS failed to validate.")
return false
end
end
begin begin
# Check if this is a scanner module. # Check if this is a scanner module or doesn't target remote hosts
if mod.class.included_modules.include?(Msf::Auxiliary::Scanner) || rhosts_range.nil? if rhosts.blank? || mod.class.included_modules.include?(Msf::Auxiliary::Scanner)
run_single(mod, action, opts) run_single(mod, action, opts)
# For multi target attempts with non-scanner modules.
else else
# For multi target attempts. rhosts_opt = Msf::OptAddressRange.new('RHOSTS')
if !rhosts_opt.valid?(rhosts)
print_error("Auxiliary failed: option RHOSTS failed to validate.")
return false
end
rhosts_range = Rex::Socket::RangeWalker.new(rhosts_opt.normalize(rhosts))
rhosts_range.each do |rhost| rhosts_range.each do |rhost|
nmod = mod.replicant nmod = mod.replicant
nmod.datastore['RHOST'] = rhost nmod.datastore['RHOST'] = rhost
vprint_status("Running module against #{rhost}") print_status("Running module against #{rhost}")
run_single(nmod, action, opts) run_single(nmod, action, opts)
end end
end end