b5b87403d3
git-svn-id: file:///home/svn/framework3/trunk@3983 4d416f70-5f16-0410-b530-b9f4589650da
22 lines
325 B
Ruby
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
|