3db0db05d9
Added IDE skeleton, layout and initial CSS, as well as a nice logo. git-svn-id: file:///home/svn/framework3/trunk@4025 4d416f70-5f16-0410-b530-b9f4589650da
13 lines
346 B
Ruby
13 lines
346 B
Ruby
# Author: L.M.H <lmh@info-pull.com>
|
|
# Description: The IDE controller of msfweb v.3. Handles views, processing,
|
|
# help and all actions related to the msfweb IDE for exploit development.
|
|
# Now Metasploit has a multi-platform IDE. Find bug. Click. Profit. (tm)
|
|
|
|
class IdeController < ApplicationController
|
|
layout 'msfide'
|
|
|
|
def start
|
|
end
|
|
|
|
end
|