7f50d33ce3
fine now. git-svn-id: file:///home/svn/framework3/trunk@3972 4d416f70-5f16-0410-b530-b9f4589650da
18 lines
238 B
Ruby
18 lines
238 B
Ruby
class ExploitsController < ApplicationController
|
|
layout 'windows'
|
|
|
|
def list
|
|
@all_exploits = Exploit.get_available()
|
|
end
|
|
|
|
def view
|
|
@all_exploits = Exploit.get_available()
|
|
end
|
|
|
|
def exploit
|
|
end
|
|
|
|
def check
|
|
end
|
|
end
|