Files
metasploit-gs/lib/msf/core/model/exploited_host.rb
T
Tod Beardsley 1db9d8eb01 Fixes #2444. Adds an ExploitedHost table, adds the db_exploited command, adds the report_exploit() function.
Tested with meterpreter, shell, and clientside exploit sessions. 


git-svn-id: file:///home/svn/framework3/trunk@10130 4d416f70-5f16-0410-b530-b9f4589650da
2010-08-24 21:57:04 +00:00

13 lines
160 B
Ruby

module Msf
class DBManager
class ExploitedHost < ActiveRecord::Base
include DBSave
belongs_to :host
belongs_to :service
belongs_to :workspace
end
end
end