Files
metasploit-gs/data/msfweb/app/controllers/payloads_controller.rb
T
lmh 7f50d33ce3 The previous commit got fscked up for some reason. This commit is basically what couldn't be updated in the previous one. Should be
fine now.



git-svn-id: file:///home/svn/framework3/trunk@3972 4d416f70-5f16-0410-b530-b9f4589650da
2006-09-27 02:47:01 +00:00

16 lines
227 B
Ruby

class PayloadsController < ApplicationController
layout 'windows'
def list
@all_payloads = Payload.get_available()
end
def view
@all_payloads = Payload.get_available()
end
def generate
end
end