Land #11460, Changing print_line to print_good

GSoC/Meterpreter_Web_Console
Brent Cook 2019-02-22 13:23:02 -06:00
commit 789122b8ee
No known key found for this signature in database
GPG Key ID: 1FFAA0B24B708F96
1 changed files with 2 additions and 2 deletions

View File

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