diff --git a/modules/auxiliary/scanner/http/iis_shortname_scanner.rb b/modules/auxiliary/scanner/http/iis_shortname_scanner.rb index a8d323b0c1..085eaf9f2a 100644 --- a/modules/auxiliary/scanner/http/iis_shortname_scanner.rb +++ b/modules/auxiliary/scanner/http/iis_shortname_scanner.rb @@ -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