Land #11559, Fix `check` command with no arguments
commit
a73393a0ea
|
@ -126,7 +126,8 @@ module ModuleCommandDispatcher
|
|||
return
|
||||
end
|
||||
|
||||
ip_range_arg = args.join(' ') || mod.datastore['RHOSTS'] || framework.datastore['RHOSTS'] || ''
|
||||
ip_range_arg = args.join(' ') unless args.empty?
|
||||
ip_range_arg ||= mod.datastore['RHOSTS'] || framework.datastore['RHOSTS'] || ''
|
||||
opt = Msf::OptAddressRange.new('RHOSTS')
|
||||
|
||||
begin
|
||||
|
|
Loading…
Reference in New Issue