Files
metasploit-gs/data/msfweb/app/controllers/exploits_controller.rb
T
lmh e706029fa4 Exploits and payloads listing now works, fixed also the taskbar style and other layout issues.
git-svn-id: file:///home/svn/framework3/trunk@3951 4d416f70-5f16-0410-b530-b9f4589650da
2006-09-25 08:36:15 +00:00

16 lines
173 B
Ruby

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