Changing print_line to print_good

Changing print_line to print_good on lines 258 and 267 in iis_shortname_scanner.rb
GSoC/Meterpreter_Web_Console
John Q. Public 2019-02-22 09:01:11 -06:00 committed by GitHub
parent 3871e45196
commit 9cf8ac81e4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -255,7 +255,7 @@ class MetasploitModule < Msf::Auxiliary
else
print_good("Found #{@dirs.size} directories")
@dirs.each do |x|
print_line("#{proto}://#{datastore['RHOST']}#{@path}#{x}")
print_good("#{proto}://#{datastore['RHOST']}#{@path}#{x}")
end
end
@ -264,7 +264,7 @@ class MetasploitModule < Msf::Auxiliary
else
print_good("Found #{@files.size} files")
@files.each do |x|
print_line("#{proto}://#{datastore['RHOST']}#{@path}#{x}")
print_good("#{proto}://#{datastore['RHOST']}#{@path}#{x}")
end
end
end