1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00
metasploit-framework/test/tests/01_all_exploits_have_payloads.rb

16 lines
307 B
Ruby
Raw Normal View History

require 'testbase'
describe Msf::Simple::Framework do
$msf.exploits.each_module do |m|
e = $msf.exploits.create(m)
it "#{m} should have compatible payloads" do
if(not e.default_target)
e.datastore['TARGET'] = 0
end
r = e.compatible_payloads
r.length.should_not == 0
end
end
end