Files
metasploit-gs/data/msfweb/app/controllers/nops_controller.rb
T
lmh 9f0375c30a Modified module referencing style for consistency, added some new stuff, started the exploit functionality work.
git-svn-id: file:///home/svn/framework3/trunk@4223 4d416f70-5f16-0410-b530-b9f4589650da
2006-12-19 14:01:08 +00:00

23 lines
486 B
Ruby

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