Dont update if user chooses default + no DBs exist

This commit is contained in:
ethicalhack3r
2015-06-03 16:40:04 +02:00
parent e03f7691f2
commit bdd6b9727d

View File

@@ -58,10 +58,13 @@ def main
elsif input =~ /^a/i elsif input =~ /^a/i
puts 'Scan aborted' puts 'Scan aborted'
exit(1) exit(1)
else
puts critical('You can not run a scan without any databases.') if missing_db_file?
exit(1)
end end
end end
if wpscan_options.update || missing_db_file? if wpscan_options.update
puts notice('Updating the Database ...') puts notice('Updating the Database ...')
DbUpdater.new(DATA_DIR).update(wpscan_options.verbose) DbUpdater.new(DATA_DIR).update(wpscan_options.verbose)
puts notice('Update completed.') puts notice('Update completed.')