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