# Author: L.M.H # Description: The exploit controller of msfweb v.3. Handles views, listing # and other actions related to exploit modules. Code and processing goes here. # Instance variables, final values, etc, go into views. class ExploitsController < ApplicationController layout 'windows' def list end def view @tmod = get_view_for_module("exploit", params[:id]) unless @tmod render_text "Unknown module specified." end end def exploit end def check end end