mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-10-29 18:07:27 +01:00
613f7be6a7
git-svn-id: file:///home/svn/framework3/trunk@13464 4d416f70-5f16-0410-b530-b9f4589650da
74 lines
1.6 KiB
Ruby
Executable File
74 lines
1.6 KiB
Ruby
Executable File
#!/usr/bin/env ruby
|
|
#
|
|
# $Id$
|
|
#
|
|
# This script generates module changelogs
|
|
#
|
|
# $Revision$
|
|
#
|
|
|
|
msfbase = File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__
|
|
$:.unshift(File.join(File.dirname(msfbase), '..', 'lib'))
|
|
|
|
require 'rex'
|
|
require 'msf/ui'
|
|
require 'msf/base'
|
|
|
|
|
|
def usage
|
|
$stderr.puts "#{$0} <src rev> [dst rev]"
|
|
exit(0)
|
|
end
|
|
|
|
src_rev = ARGV.shift || usage()
|
|
dst_rev = ARGV.shift || "HEAD"
|
|
|
|
$stderr.puts "[*] Extracting changes from Subversion..."
|
|
data = `svn diff -r #{src_rev}:#{dst_rev} --summarize https://www.metasploit.com/svn/framework3/trunk/modules/`
|
|
|
|
# Always disable the database (we never need it just to list module
|
|
# information).
|
|
framework_opts = { 'DisableDatabase' => true }
|
|
|
|
# Initialize the simplified framework instance.
|
|
framework = Msf::Simple::Framework.create(framework_opts)
|
|
|
|
|
|
madd = []
|
|
mdel = []
|
|
mmod = []
|
|
|
|
data.each_line do |line|
|
|
|
|
action, mname = line.strip.split(/\s+/, 2)
|
|
mname = mname.gsub(/^.*modules\//, '').gsub('exploits', 'exploit').gsub(/\.rb$/, '')
|
|
case action
|
|
when /^A/
|
|
# Added a new module
|
|
m = framework.modules.create(mname)
|
|
if m
|
|
madd << "\"#{m.name}\":http://www.metasploit.com/modules/#{mname}"
|
|
end
|
|
when /^D/
|
|
# Deleted a module
|
|
mdel << mname
|
|
when /^M/
|
|
# Modified a module
|
|
# Added a new module
|
|
m = framework.modules.create(mname)
|
|
if m
|
|
mmod << "\"#{m.name}\":http://www.metasploit.com/modules/#{mname}"
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
|
|
$stdout.puts "h2. New Modules\n\n"
|
|
madd.each { |x| $stdout.puts x }
|
|
$stdout.puts "\nh2. Modified Modules\n\n"
|
|
mmod.each { |x| $stdout.puts x }
|
|
$stdout.puts "\nh2. Removed Modules\n\n"
|
|
mdel.each { |x| $stdout.puts "* modules/#{x}" }
|
|
|