mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
2b5d69447a
git-svn-id: file:///home/svn/framework3/trunk@7109 4d416f70-5f16-0410-b530-b9f4589650da
16 lines
307 B
Ruby
Executable File
16 lines
307 B
Ruby
Executable File
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
|