Fix bug: NoMethodError undefined method `each' for nil:NilClass (line 155)

unstable
sinn3r 2012-01-20 10:58:02 -06:00
parent 6f341934d6
commit 5631774d92
1 changed files with 1 additions and 1 deletions

View File

@ -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'