Land #9954, Add search filtering to the CSV output option

GSoC/Meterpreter_Web_Console
Brent Cook 2018-04-30 17:01:34 -05:00
commit d340eb644f
No known key found for this signature in database
GPG Key ID: 1FFAA0B24B708F96
1 changed files with 29 additions and 19 deletions

View File

@ -19,8 +19,9 @@ module Msf
CMD_USE_TIMEOUT = 3
@@search_opts = Rex::Parser::Arguments.new(
"-h" => [ false, "Help banner."],
"-S" => [ true, "Row search filter."],
"-h" => [ false, "Help banner"],
"-o" => [ true, "Send output to a file in csv format"],
"-S" => [ true, "Search string for row filter"],
)
def commands
@ -410,7 +411,12 @@ module Msf
end
def cmd_search_help
print_line "Usage: search <keywords>"
print_line "Usage: search [ options ] <keywords>"
print_line
print_line "OPTIONS:"
print_line " -h Show this help information"
print_line " -o <file> Send output to a file in csv format"
print_line " -S <string> Search string for row filter"
print_line
print_line "Keywords:"
{
@ -444,24 +450,27 @@ module Msf
match = ''
search_term = nil
output_file = nil
@@search_opts.parse(args) { |opt, idx, val|
case opt
when "-t"
print_error("Deprecated option. Use type:#{val} instead")
cmd_search_help
return
when "-S", "--search"
when "-S"
search_term = val
when "-h"
cmd_search_help
return
when "-S"
search_term = val
when '-o'
output_file = val
else
match += val + " "
end
}
if match.empty? && search_term.nil?
print_error("Keywords or search argument required\n")
cmd_search_help
return
end
# Display the table of matches
tbl = generate_module_table("Matching Modules", search_term)
Msf::Modules::Metadata::Cache.instance.find(match).each do |m|
@ -472,8 +481,16 @@ module Msf
m.name
]
end
if output_file
print_status("Wrote search results to #{output_file}")
::File.open(output_file, "wb") { |ofd|
ofd.write(tbl.to_csv)
}
else
print_line(tbl.to_s)
end
end
#
# Tab completion for the search command
@ -487,13 +504,6 @@ module Msf
return @@search_opts.fmt.keys
end
case (words[-1])
when "-r"
return RankingName.sort.map{|r| r[1]}
when "-t"
return %w{auxiliary encoder exploit nop payload post}
end
[]
end