Files
metasploit-gs/data/msfweb/app/controllers/payloads_controller.rb
T
HD Moore 44b6ef4fbd Merge
git-svn-id: file:///home/svn/framework3/trunk@3966 4d416f70-5f16-0410-b530-b9f4589650da
2006-09-26 06:33:50 +00:00

15 lines
194 B
Ruby

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