Land #11423, Moved bruteforce(ip) under the sys_name check

master
Wei Chen 2019-03-05 11:02:33 -06:00
commit 027c0fc100
No known key found for this signature in database
GPG Key ID: 6E162ED2C01D9AAC
1 changed files with 14 additions and 10 deletions

View File

@ -171,23 +171,27 @@ class MetasploitModule < Msf::Auxiliary
}
})
sys_name = get_system_name(res)
if sys_name.blank?
print_error 'Could not retrieve system name.'
return
end
version = get_version(res)
unless version.blank?
print_status("Version detected: #{version}")
unless is_version_tested?(version)
print_warning("You're running the module against a version we have not tested")
print_warning("You're running the module against a version we have not tested.")
end
end
sys_name = get_system_name(res)
unless sys_name.blank?
print_good("System name detected: #{sys_name}")
report_note(
:host => ip,
:type => "system.name",
:data => sys_name
)
end
print_good("System name detected: #{sys_name}")
report_note(
:host => ip,
:type => "system.name",
:data => sys_name
)
if anonymous_access?(res)
print_good("No login necessary. Server allows anonymous access.")