67 lines
1.2 KiB
Plaintext
67 lines
1.2 KiB
Plaintext
|
#!/usr/bin/env ruby
|
||
|
#
|
||
|
# This script lists each module by its licensing terms
|
||
|
#
|
||
|
|
||
|
$:.unshift(File.join(File.dirname(__FILE__), 'lib'))
|
||
|
|
||
|
require 'rex'
|
||
|
require 'msf/ui'
|
||
|
require 'msf/base'
|
||
|
|
||
|
def lic_short(l)
|
||
|
if (l.class == Array)
|
||
|
l = l[0]
|
||
|
end
|
||
|
|
||
|
case l
|
||
|
when MSF_LICENSE
|
||
|
'MSF'
|
||
|
when GPL_LICENSE
|
||
|
'GPL'
|
||
|
when BSD_LICENSE
|
||
|
'BSD'
|
||
|
when ARTISTIC_LICENSE
|
||
|
'ART'
|
||
|
else
|
||
|
'UNK'
|
||
|
end
|
||
|
end
|
||
|
|
||
|
Indent = ' '
|
||
|
|
||
|
# Initialize the simplified framework instance.
|
||
|
$framework = Msf::Simple::Framework.create
|
||
|
|
||
|
|
||
|
tbl = Rex::Ui::Text::Table.new(
|
||
|
'Header' => 'Licensed Modules',
|
||
|
'Indent' => 4,
|
||
|
'Columns' => [ 'License','Type', 'Name' ]
|
||
|
)
|
||
|
|
||
|
licenses = {}
|
||
|
|
||
|
$framework.payloads.each_module { |name, mod|
|
||
|
x = mod.new
|
||
|
tbl << [ lic_short(x.license), 'Payload', name ]
|
||
|
}
|
||
|
$framework.exploits.each_module { |name, mod|
|
||
|
x = mod.new
|
||
|
tbl << [ lic_short(x.license), 'Exploit', name ]
|
||
|
}
|
||
|
$framework.nops.each_module { |name, mod|
|
||
|
x = mod.new
|
||
|
tbl << [ lic_short(x.license), 'Nop', name ]
|
||
|
}
|
||
|
$framework.encoders.each_module { |name, mod|
|
||
|
x = mod.new
|
||
|
tbl << [ lic_short(x.license), 'Encoder', name ]
|
||
|
}
|
||
|
$framework.auxiliary.each_module { |name, mod|
|
||
|
x = mod.new
|
||
|
tbl << [ lic_short(x.license), 'Auxiliary', name ]
|
||
|
}
|
||
|
|
||
|
puts tbl.to_s
|