Files
metasploit-gs/data/msfweb/app/models/exploit.rb
T

8 lines
123 B
Ruby
Raw Normal View History

class Exploit
def self.find_all()
mods = []
$msframework.exploits.each_module { |n,m| mods << m.new }
mods
end
end