Fix bug: NoMethodError undefined method `each' for nil:NilClass (line 155)
parent
6f341934d6
commit
5631774d92
|
@ -151,7 +151,7 @@ class Metasploit4 < Msf::Auxiliary
|
|||
page = 1
|
||||
my_filter = datastore['FILTER']
|
||||
for i in page..tpages
|
||||
next if results[i].nil?
|
||||
next if results[i].nil? or results[i]['matches'].nil?
|
||||
results[i]['matches'].each { |host|
|
||||
|
||||
city = host['city'] || 'N/A'
|
||||
|
|
Loading…
Reference in New Issue