c8fb238302
git-svn-id: file:///home/svn/framework3/trunk@3980 4d416f70-5f16-0410-b530-b9f4589650da
22 lines
300 B
Ruby
22 lines
300 B
Ruby
class ExploitsController < ApplicationController
|
|
layout 'windows'
|
|
|
|
def search_complete(terms)
|
|
search_modules(Exploit.find_all(), terms)
|
|
end
|
|
|
|
def list
|
|
@exploits = Exploit.find_all()
|
|
end
|
|
|
|
def view
|
|
@exploits = Exploit.find_all()
|
|
end
|
|
|
|
def exploit
|
|
end
|
|
|
|
def check
|
|
end
|
|
end
|