Files
metasploit-gs/tools/modules/module_author.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

115 lines
2.6 KiB
Ruby
Raw Normal View History

#!/usr/bin/env ruby
2018-03-20 11:33:34 +00:00
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
2010-05-03 17:13:09 +00:00
#
# This script lists each module by its author(s) and
# the number of modules per author
#
msfbase = __FILE__
while File.symlink?(msfbase)
2013-09-30 13:47:53 -05:00
msfbase = File.expand_path(File.readlink(msfbase), File.dirname(msfbase))
end
2015-10-06 10:30:52 -05:00
$:.unshift(File.expand_path(File.join(File.dirname(msfbase), '..', '..', 'lib')))
2021-04-30 18:34:52 +07:00
require 'msfenv'
require 'rex'
2019-02-21 22:56:04 -06:00
require 'json'
FILENAME = 'db/modules_metadata_base.json'
2011-06-07 01:25:12 +00:00
sort = 0
filter = 'All'
2019-02-21 23:11:39 -06:00
filters = ['all','exploit','payload','post','nop','encoder','auxiliary', 'evasion']
2011-06-07 01:25:12 +00:00
reg = 0
regex = nil
opts = Rex::Parser::Arguments.new(
2013-09-30 13:47:53 -05:00
"-h" => [ false, "Help menu." ],
"-s" => [ false, "Sort by Author instead of Module Type."],
"-r" => [ false, "Reverse Sort"],
"-f" => [ true, "Filter based on Module Type [#{filters.map{|f|f.capitalize}.join(", ")}] (Default = All)."],
"-x" => [ true, "String or RegEx to try and match against the Author Field"]
)
opts.parse(ARGV) { |opt, idx, val|
2013-09-30 13:47:53 -05:00
case opt
when "-h"
puts "\nMetasploit Script for Displaying Module Author information."
puts "=========================================================="
puts opts.usage
exit
when "-s"
puts "Sorting by Author"
sort = 1
when "-r"
puts "Reverse Sorting"
sort = 2
when "-f"
unless filters.include?(val.downcase)
puts "Invalid Filter Supplied: #{val}"
puts "Please use one of these: #{filters.map{|f|f.capitalize}.join(", ")}"
exit
end
puts "Module Filter: #{val}"
filter = val
when "-x"
puts "Regex: #{val}"
regex = Regexp.new(val)
end
}
2010-05-03 17:13:09 +00:00
Indent = ' '
2016-08-10 13:30:09 -05:00
tbl = Rex::Text::Table.new(
2013-09-30 13:47:53 -05:00
'Header' => 'Module References',
'Indent' => Indent.length,
'Columns' => [ 'Module', 'Reference' ]
)
names = {}
2019-02-21 23:20:43 -06:00
local_modules = JSON.parse(File.read(FILENAME)) # get cache file location from framework?
2019-02-21 22:56:04 -06:00
local_modules.each do |_module_key, local_module|
local_module['author'].each do |r|
2019-02-21 23:07:22 -06:00
next if filter.downcase != 'all' && local_module['type'] != filter.downcase
2013-09-30 13:47:53 -05:00
if regex.nil? or r =~ regex
2019-08-12 19:30:43 -05:00
tbl << [ local_module['fullname'], r ]
2013-09-30 13:47:53 -05:00
names[r] ||= 0
names[r] += 1
end
end
2019-02-21 22:56:04 -06:00
end
if sort == 1
2013-09-30 13:47:53 -05:00
tbl.sort_rows(1)
end
if sort == 2
2013-09-30 13:47:53 -05:00
tbl.sort_rows(1)
tbl.rows.reverse
end
puts tbl.to_s
2016-08-10 13:30:09 -05:00
tbl = Rex::Text::Table.new(
2013-09-30 13:47:53 -05:00
'Header' => 'Module Count by Author',
'Indent' => Indent.length,
'Columns' => [ 'Count', 'Name' ]
)
names.keys.sort {|a,b| names[b] <=> names[a] }.each do |name|
2013-09-30 13:47:53 -05:00
tbl << [ names[name].to_s, name ]
end
2011-06-07 01:25:12 +00:00
puts
puts tbl.to_s