Files
metasploit-gs/data/msfweb/app/controllers/exploits_controller.rb
T

22 lines
300 B
Ruby
Raw Normal View History

class ExploitsController < ApplicationController
layout 'windows'
def search_complete(terms)
search_modules(Exploit.find_all(), terms)
end
def list
@exploits = Exploit.find_all()
end
def view
@exploits = Exploit.find_all()
end
def exploit
end
def check
end
end