Files
metasploit-gs/data/msfweb/app/controllers/exploits_controller.rb
T
HD Moore 44b6ef4fbd Merge
git-svn-id: file:///home/svn/framework3/trunk@3966 4d416f70-5f16-0410-b530-b9f4589650da
2006-09-26 06:33:50 +00:00

17 lines
205 B
Ruby

class ExploitsController < ApplicationController
def list
@all_exploits = Exploit.get_available()
end
def view
@all_exploits = Exploit.get_available()
end
def exploit
end
def check
end
end