Files
metasploit-gs/data/msfweb/app/controllers/exploits_controller.rb
T
lmh b5b87403d3 Mostly last commit before sleep time. Search method is broken.
git-svn-id: file:///home/svn/framework3/trunk@3983 4d416f70-5f16-0410-b530-b9f4589650da
2006-09-27 22:02:51 +00:00

22 lines
325 B
Ruby

class ExploitsController < ApplicationController
layout 'windows', :except => 'search'
def search
@results = search_modules(Exploit.find_all(), params[:terms])
end
def list
@exploits = Exploit.find_all()
end
def view
@exploits = Exploit.find_all()
end
def exploit
end
def check
end
end